diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-03-01 19:49:51 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-03-01 19:49:51 +0000 |
commit | 0c8c4d490893907237facd931d1ad8e651089f7d (patch) | |
tree | 6750ed6f0af75860be51204f7813994914b7927e /src/gui | |
parent | 4b1882a2c49572a108d1fd3269fe2dd71e62c7bc (diff) | |
download | mana-0c8c4d490893907237facd931d1ad8e651089f7d.tar.gz mana-0c8c4d490893907237facd931d1ad8e651089f7d.tar.bz2 mana-0c8c4d490893907237facd931d1ad8e651089f7d.tar.xz mana-0c8c4d490893907237facd931d1ad8e651089f7d.zip |
Changed tmw.ini to config.xml which is read/written using libxml2.
Diffstat (limited to 'src/gui')
-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; |