summaryrefslogtreecommitdiff
path: root/src/gui/fonts/textchunksmall.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/fonts/textchunksmall.cpp')
-rw-r--r--src/gui/fonts/textchunksmall.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/fonts/textchunksmall.cpp b/src/gui/fonts/textchunksmall.cpp
index c7fbf6051..73e8ad386 100644
--- a/src/gui/fonts/textchunksmall.cpp
+++ b/src/gui/fonts/textchunksmall.cpp
@@ -50,8 +50,9 @@ TextChunkSmall &TextChunkSmall::operator=(const TextChunkSmall &chunk)
bool TextChunkSmall::operator==(const TextChunkSmall &chunk) const
{
- return (chunk.text == text && chunk.color == color
- && chunk.color2 == color2);
+ return chunk.text == text &&
+ chunk.color == color &&
+ chunk.color2 == color2;
}
bool TextChunkSmall::operator<(const TextChunkSmall &chunk) const