forked from qt-creator/qt-creator
QmlDesigner: fix compare operator in DebugOutputCommand
Change-Id: I69d495cd61585123df99631d92f6c26b114d49b7 Reviewed-by: Marco Bubke <marco.bubke@digia.com>
This commit is contained in:
committed by
Marco Bubke
parent
b35e8fbf83
commit
82f30716d8
@@ -73,7 +73,7 @@ QDataStream &operator>>(QDataStream &in, DebugOutputCommand &command)
|
||||
bool operator ==(const DebugOutputCommand &first, const DebugOutputCommand &second)
|
||||
{
|
||||
return first.m_type == second.m_type
|
||||
&& second.m_text == second.m_text;
|
||||
&& first.m_text == second.m_text;
|
||||
}
|
||||
|
||||
QDebug operator <<(QDebug debug, const DebugOutputCommand &command)
|
||||
|
||||
Reference in New Issue
Block a user