aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/debugger
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@theqtcompany.com>2015-07-14 19:20:28 +0200
committerUlf Hermann <ulf.hermann@theqtcompany.com>2015-07-23 08:26:11 +0000
commit235823de35cac9b204536936e8f680cd02fc72bf (patch)
tree6fcd46efe59ddeae4552d7a5154bc867b0f8fb10 /src/qml/debugger
parent30ead66c6238b4eea4867a540975e4ad8f343dbc (diff)
Fix broken Q_UNUSED declarations in QQmlDebugServer
Change-Id: I0f2cf0a09dfbfb1c2db79b3b5e0c35da546e5c31 Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/qml/debugger')
-rw-r--r--src/qml/debugger/qqmldebugserver.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/qml/debugger/qqmldebugserver.cpp b/src/qml/debugger/qqmldebugserver.cpp
index a4d8f0ede0..beecc87fa4 100644
--- a/src/qml/debugger/qqmldebugserver.cpp
+++ b/src/qml/debugger/qqmldebugserver.cpp
@@ -825,10 +825,7 @@ bool QQmlDebugServerPrivate::enable(Action action)
}
return true;
#else
- Q_UNUSED(portFrom);
- Q_UNUSED(portTo);
- Q_UNUSED(block);
- Q_UNUSED(hostAddress);
+ Q_UNUSED(action);
return false;
#endif
}