summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2014-06-20 08:39:50 +0300
committerOrgad Shaneh <orgads@gmail.com>2014-06-23 15:30:18 +0200
commit4494e74ae7bc020cd77a881e57509e2fda88230e (patch)
treeb8619bc809d8ed3598f14417cfacca30b173b9fb /share
parent37767bc2336180f4efcf5deb832f753c39f77e5c (diff)
downloadqt-creator-4494e74ae7bc020cd77a881e57509e2fda88230e.tar.gz
QmlDesigner: Fix "unused argument" compiler warnings
Change-Id: Ibfdd61069183a80b322674376200d92d11c06a41 Reviewed-by: Marco Bubke <marco.bubke@digia.com>
Diffstat (limited to 'share')
-rw-r--r--share/qtcreator/qml/qmlpuppet/commands/puppetalivecommand.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/share/qtcreator/qml/qmlpuppet/commands/puppetalivecommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/puppetalivecommand.cpp
index 13fff5fbec..46b354d0af 100644
--- a/share/qtcreator/qml/qmlpuppet/commands/puppetalivecommand.cpp
+++ b/share/qtcreator/qml/qmlpuppet/commands/puppetalivecommand.cpp
@@ -35,17 +35,17 @@ PuppetAliveCommand::PuppetAliveCommand()
{
}
-QDataStream &operator<<(QDataStream &out, const PuppetAliveCommand &command)
+QDataStream &operator<<(QDataStream &out, const PuppetAliveCommand &/*command*/)
{
return out;
}
-QDataStream &operator>>(QDataStream &in, PuppetAliveCommand &command)
+QDataStream &operator>>(QDataStream &in, PuppetAliveCommand &/*command*/)
{
return in;
}
-QDebug operator <<(QDebug debug, const PuppetAliveCommand &command)
+QDebug operator <<(QDebug debug, const PuppetAliveCommand &/*command*/)
{
return debug.nospace() << "PuppetAliveCommand()";
}