QmlDesigner: Fix "unused argument" compiler warnings

Change-Id: Ibfdd61069183a80b322674376200d92d11c06a41
Reviewed-by: Marco Bubke <marco.bubke@digia.com>
This commit is contained in:
Orgad Shaneh
2014-06-20 08:39:50 +03:00
committed by Orgad Shaneh
parent 37767bc233
commit 4494e74ae7

View File

@@ -35,17 +35,17 @@ PuppetAliveCommand::PuppetAliveCommand()
{ {
} }
QDataStream &operator<<(QDataStream &out, const PuppetAliveCommand &command) QDataStream &operator<<(QDataStream &out, const PuppetAliveCommand &/*command*/)
{ {
return out; return out;
} }
QDataStream &operator>>(QDataStream &in, PuppetAliveCommand &command) QDataStream &operator>>(QDataStream &in, PuppetAliveCommand &/*command*/)
{ {
return in; return in;
} }
QDebug operator <<(QDebug debug, const PuppetAliveCommand &command) QDebug operator <<(QDebug debug, const PuppetAliveCommand &/*command*/)
{ {
return debug.nospace() << "PuppetAliveCommand()"; return debug.nospace() << "PuppetAliveCommand()";
} }