aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.qmake.conf2
-rw-r--r--src/macextras/qmacpasteboardmime.mm2
2 files changed, 3 insertions, 1 deletions
diff --git a/.qmake.conf b/.qmake.conf
index 2f09a2b..45d05b2 100644
--- a/.qmake.conf
+++ b/.qmake.conf
@@ -1,3 +1,3 @@
load(qt_build_config)
-MODULE_VERSION = 5.2.0
+MODULE_VERSION = 5.2.1
diff --git a/src/macextras/qmacpasteboardmime.mm b/src/macextras/qmacpasteboardmime.mm
index edf8de6..3902bfb 100644
--- a/src/macextras/qmacpasteboardmime.mm
+++ b/src/macextras/qmacpasteboardmime.mm
@@ -132,6 +132,8 @@ void qRegisterDraggedTypes(const QStringList &types)
*/
QMacPasteboardMime::QMacPasteboardMime(char t) : type(t)
{
+ Q_UNUSED(type);
+
QPlatformNativeInterface::NativeResourceForIntegrationFunction function = resolvePlatformFunction("addToMimeList");
if (function) {
typedef void (*AddToGlobalMimeListFunction)(QMacPasteboardMime *);