summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/3rdparty/phonon/mmf/audiooutput.h8
-rw-r--r--src/3rdparty/phonon/mmf/mediaobject.h1
2 files changed, 6 insertions, 3 deletions
diff --git a/src/3rdparty/phonon/mmf/audiooutput.h b/src/3rdparty/phonon/mmf/audiooutput.h
index 02dd046..8c0de1f 100644
--- a/src/3rdparty/phonon/mmf/audiooutput.h
+++ b/src/3rdparty/phonon/mmf/audiooutput.h
@@ -29,9 +29,9 @@ namespace Phonon
class MediaObject;
/**
- * @short AudioOutputInterface42 implementation for MMF.
+ * @short AudioOutputInterface implementation for MMF.
*
- * Implements the AudioOutputInterface42 for Symbian/S60's MMF
+ * Implements the AudioOutputInterface for Symbian/S60's MMF
* framework.
*
* This class has a very small role, we simply access CDrmPlayerUtility
@@ -47,9 +47,11 @@ namespace Phonon
* @author Frans Englich<frans.englich@nokia.com>
*/
class AudioOutput : public QObject
- , public AudioOutputInterface42
+ , public AudioOutputInterface
{
Q_OBJECT
+ Q_INTERFACES(Phonon::AudioOutputInterface)
+
public:
AudioOutput(Backend *backend, QObject *parent);
virtual qreal volume() const;
diff --git a/src/3rdparty/phonon/mmf/mediaobject.h b/src/3rdparty/phonon/mmf/mediaobject.h
index ae3cbeb..0631e4a 100644
--- a/src/3rdparty/phonon/mmf/mediaobject.h
+++ b/src/3rdparty/phonon/mmf/mediaobject.h
@@ -52,6 +52,7 @@ namespace Phonon
{
Q_OBJECT
Q_INTERFACES(Phonon::MediaObjectInterface)
+
public:
MediaObject(QObject *parent);
virtual ~MediaObject();