summaryrefslogtreecommitdiffstats
path: root/src/declarative
diff options
context:
space:
mode:
authorjaanttil <janne.anttila@digia.com>2011-10-31 16:06:08 +0200
committerQt by Nokia <qt-info@nokia.com>2012-02-03 15:25:17 +0100
commit19e1be4814cb2ddf42a75fd6704aad329a93d954 (patch)
treea0602eeeddf2d9abe2ae958ef5e9ba8e71c5a6c8 /src/declarative
parente086eca55e87cf56ed679bfa2b51bd5c83899b30 (diff)
Fixed compiler warning about unused status argument.
Task-number: QTBUG-22512 Change-Id: I6894259faa3af6171a3f5313357d222e45b48af3 Reviewed-by: Andreas Holzammer <andreas.holzammer@kdab.com> Reviewed-by: Aurindam Jana <aurindam.jana@nokia.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
Diffstat (limited to 'src/declarative')
-rw-r--r--src/declarative/debugger/qdeclarativeinspectorservice.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/declarative/debugger/qdeclarativeinspectorservice.cpp b/src/declarative/debugger/qdeclarativeinspectorservice.cpp
index b651b259d4..2971402c74 100644
--- a/src/declarative/debugger/qdeclarativeinspectorservice.cpp
+++ b/src/declarative/debugger/qdeclarativeinspectorservice.cpp
@@ -86,6 +86,7 @@ void QDeclarativeInspectorService::sendMessage(const QByteArray &message)
void QDeclarativeInspectorService::statusChanged(Status status)
{
+ Q_UNUSED(status);
updateStatus();
}