Cmb: Remove white spaces around operators

Change-Id: Icad10f930a5e67b90fc2addcf9625116069ff7a6
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
This commit is contained in:
Marco Bubke
2015-06-10 13:52:45 +02:00
parent 7309e8bb64
commit 29b96af1cb
48 changed files with 170 additions and 170 deletions

View File

@@ -96,7 +96,7 @@ QDataStream &operator>>(QDataStream &in, CompleteCodeCommand &command)
return in;
}
bool operator == (const CompleteCodeCommand &first, const CompleteCodeCommand &second)
bool operator==(const CompleteCodeCommand &first, const CompleteCodeCommand &second)
{
return first.ticketNumber_ == second.ticketNumber_
&& first.filePath_ == second.filePath_
@@ -105,7 +105,7 @@ bool operator == (const CompleteCodeCommand &first, const CompleteCodeCommand &s
&& first.column_ == second.column_;
}
bool operator < (const CompleteCodeCommand &first, const CompleteCodeCommand &second)
bool operator<(const CompleteCodeCommand &first, const CompleteCodeCommand &second)
{
return first.ticketNumber_ < second.ticketNumber_
&& first.filePath_ < second.filePath_
@@ -114,7 +114,7 @@ bool operator < (const CompleteCodeCommand &first, const CompleteCodeCommand &se
&& first.column_ < second.column_;
}
QDebug operator <<(QDebug debug, const CompleteCodeCommand &command)
QDebug operator<<(QDebug debug, const CompleteCodeCommand &command)
{
debug.nospace() << "CompleteCodeCommand(";