forked from qt-creator/qt-creator
QmlDesigner: Fix "unused argument" compiler warnings
Change-Id: Ibfdd61069183a80b322674376200d92d11c06a41 Reviewed-by: Marco Bubke <marco.bubke@digia.com>
This commit is contained in:
committed by
Orgad Shaneh
parent
37767bc233
commit
4494e74ae7
@@ -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()";
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user