From 4494e74ae7bc020cd77a881e57509e2fda88230e Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Fri, 20 Jun 2014 08:39:50 +0300 Subject: [PATCH] QmlDesigner: Fix "unused argument" compiler warnings Change-Id: Ibfdd61069183a80b322674376200d92d11c06a41 Reviewed-by: Marco Bubke --- .../qtcreator/qml/qmlpuppet/commands/puppetalivecommand.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/share/qtcreator/qml/qmlpuppet/commands/puppetalivecommand.cpp b/share/qtcreator/qml/qmlpuppet/commands/puppetalivecommand.cpp index 13fff5fbecd..46b354d0afe 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()"; }