summaryrefslogtreecommitdiff
path: root/src/gui/chat.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2005-03-01 19:49:51 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2005-03-01 19:49:51 +0000
commit0c8c4d490893907237facd931d1ad8e651089f7d (patch)
tree6750ed6f0af75860be51204f7813994914b7927e /src/gui/chat.cpp
parent4b1882a2c49572a108d1fd3269fe2dd71e62c7bc (diff)
downloadmana-client-0c8c4d490893907237facd931d1ad8e651089f7d.tar.gz
mana-client-0c8c4d490893907237facd931d1ad8e651089f7d.tar.bz2
mana-client-0c8c4d490893907237facd931d1ad8e651089f7d.tar.xz
mana-client-0c8c4d490893907237facd931d1ad8e651089f7d.zip
Changed tmw.ini to config.xml which is read/written using libxml2.
Diffstat (limited to 'src/gui/chat.cpp')
-rw-r--r--src/gui/chat.cpp6
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;