summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaurice Kalinowski <maurice.kalinowski@qt.io>2016-11-14 14:28:17 +0100
committerYoann Lopes <yoann.lopes@qt.io>2016-11-14 17:06:01 +0000
commit130a9ccdcfe92565543094c4ea96ed2497999e49 (patch)
tree122558c39455600e0081dabe852173a347c1180a
parenta7c23d86362efad27b8dbfd1bc570299dd606fbb (diff)
Fix compiler warning
Change-Id: I6a0e9cfed72e67fe3d556264b135b6e7c5bf6b9b Reviewed-by: Yoann Lopes <yoann.lopes@qt.io>
-rw-r--r--src/plugins/wmf/wmfserviceplugin.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/wmf/wmfserviceplugin.cpp b/src/plugins/wmf/wmfserviceplugin.cpp
index c6597ed78..e19154aee 100644
--- a/src/plugins/wmf/wmfserviceplugin.cpp
+++ b/src/plugins/wmf/wmfserviceplugin.cpp
@@ -101,6 +101,8 @@ QMediaServiceProviderHint::Features WMFServicePlugin::supportedFeatures(
if (service == Q_MEDIASERVICE_MEDIAPLAYER)
return QMediaServiceProviderHint::StreamPlayback;
else
+#else
+ Q_UNUSED(service);
#endif
return QMediaServiceProviderHint::Features();
}