summaryrefslogtreecommitdiff
path: root/src/gui/fonts
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/fonts')
-rw-r--r--src/gui/fonts/textchunk.cpp4
-rw-r--r--src/gui/fonts/textchunksmall.cpp5
2 files changed, 5 insertions, 4 deletions
diff --git a/src/gui/fonts/textchunk.cpp b/src/gui/fonts/textchunk.cpp
index 694790881..22dcd18dc 100644
--- a/src/gui/fonts/textchunk.cpp
+++ b/src/gui/fonts/textchunk.cpp
@@ -89,8 +89,8 @@ TextChunk::~TextChunk()
bool TextChunk::operator==(const TextChunk &restrict chunk) const
{
- return (chunk.text == text && chunk.color == color
- && chunk.color2 == color2);
+ return chunk.text == text && chunk.color == color
+ && chunk.color2 == color2;
}
void TextChunk::generate(TTF_Font *restrict const font,
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