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

@@ -72,17 +72,17 @@ QDataStream &operator>>(QDataStream &in, ProjectPartContainer &container)
return in;
}
bool operator == (const ProjectPartContainer &first, const ProjectPartContainer &second)
bool operator==(const ProjectPartContainer &first, const ProjectPartContainer &second)
{
return first.projectPartId_ == second.projectPartId_;
}
bool operator < (const ProjectPartContainer &first, const ProjectPartContainer &second)
bool operator<(const ProjectPartContainer &first, const ProjectPartContainer &second)
{
return first.projectPartId_ < second.projectPartId_;
}
QDebug operator <<(QDebug debug, const ProjectPartContainer &container)
QDebug operator<<(QDebug debug, const ProjectPartContainer &container)
{
debug.nospace() << "ProjectPartContainer("
<< container.projectPartId()