summaryrefslogtreecommitdiffstats
path: root/src/plugins/wmf/decoder/mfdecoderservice.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/wmf/decoder/mfdecoderservice.cpp')
-rw-r--r--src/plugins/wmf/decoder/mfdecoderservice.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/wmf/decoder/mfdecoderservice.cpp b/src/plugins/wmf/decoder/mfdecoderservice.cpp
index c6ed3976a..eb2069a23 100644
--- a/src/plugins/wmf/decoder/mfdecoderservice.cpp
+++ b/src/plugins/wmf/decoder/mfdecoderservice.cpp
@@ -49,7 +49,7 @@ MFAudioDecoderService::~MFAudioDecoderService()
{
}
-QMediaControl* MFAudioDecoderService::requestControl(const char *name)
+QObject *MFAudioDecoderService::requestControl(const char *name)
{
if (qstrcmp(name, QAudioDecoderControl_iid) == 0) {
return new MFAudioDecoderControl(this);
@@ -57,7 +57,7 @@ QMediaControl* MFAudioDecoderService::requestControl(const char *name)
return 0;
}
-void MFAudioDecoderService::releaseControl(QMediaControl *control)
+void MFAudioDecoderService::releaseControl(QObject *control)
{
if (control && control->inherits("MFAudioDecoderControl")) {
delete control;