diff options
Diffstat (limited to 'src/gui/chat.cpp')
-rw-r--r-- | src/gui/chat.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index 34b49571..6e562017 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -78,13 +78,13 @@ void ChatBox::chat_log(std::string line, int own) // A try to get text sentences no too long... bool finished = false; - while ( !finished ) + while (!finished) { std::string tempText; - if ( line.length() > 60 ) + if (line.length() > 60) { - if ( line.length() > 60 ) + if (line.length() > 60) tempText = line.substr(0, 60); else tempText = line; |