QmlDesigner: fix compare operator in DebugOutputCommand

Change-Id: I69d495cd61585123df99631d92f6c26b114d49b7
Reviewed-by: Marco Bubke <marco.bubke@digia.com>
This commit is contained in:
Tobias Hunger
2013-11-13 13:27:59 +01:00
committed by Marco Bubke
parent b35e8fbf83
commit 82f30716d8

View File

@@ -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)