diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-04 16:42:03 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-05 14:34:42 +0100 |
| commit | 2105caa32a12236d5b70a0cf8b9ac62fcf7f574e (patch) | |
| tree | c19bc651579257b262ab5001790790b75edc95c8 /src/reel_sound_asset.h | |
| parent | 4f590672720ace3ccb9582a2f539683fa83e1ac8 (diff) | |
Remove unnecessary Content class.
Diffstat (limited to 'src/reel_sound_asset.h')
| -rw-r--r-- | src/reel_sound_asset.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reel_sound_asset.h b/src/reel_sound_asset.h index 622a97cf..92667429 100644 --- a/src/reel_sound_asset.h +++ b/src/reel_sound_asset.h @@ -41,12 +41,12 @@ public: /** @return the SoundMXF that this object refers to */ boost::shared_ptr<SoundMXF> mxf () { - return boost::dynamic_pointer_cast<SoundMXF> (_content.object ()); + return boost::dynamic_pointer_cast<SoundMXF> (_asset.object ()); } /** @return the SoundMXF that this object refers to */ boost::shared_ptr<const SoundMXF> mxf () const { - return boost::dynamic_pointer_cast<const SoundMXF> (_content.object ()); + return boost::dynamic_pointer_cast<const SoundMXF> (_asset.object ()); } private: |
