mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 11:17:34 +02:00
Code style fixes
This commit is contained in:
parent
367c5f39df
commit
bb51a000fb
1 changed files with 25 additions and 25 deletions
|
@ -143,7 +143,7 @@ public:
|
|||
}
|
||||
|
||||
bool operator!=(const DepthTest& right) const {
|
||||
return !(right == *this);
|
||||
return !(*this == right);
|
||||
}
|
||||
|
||||
operator QString() const {
|
||||
|
@ -214,7 +214,7 @@ public:
|
|||
}
|
||||
|
||||
bool operator!=(const StencilActivation& right) const {
|
||||
return !(right == *this);
|
||||
return !(*this == right);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -267,7 +267,7 @@ public:
|
|||
}
|
||||
|
||||
bool operator!=(const BlendFunction& right) const {
|
||||
return !(right == *this);
|
||||
return !(*this == right);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -295,7 +295,7 @@ public:
|
|||
}
|
||||
|
||||
bool operator!=(const Flags& right) const {
|
||||
return !(right == *this);
|
||||
return !(*this == right);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue