Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2010-11-11 01:12:25 +0000
committerStijn Buys <ingar@osirion.org>2010-11-11 01:12:25 +0000
commitc5ecf465005314537ccc6173fc0b3dfd3a7b4a63 (patch)
tree794c4d0d7f62493d68bb3336d29e8b0760413a8f /src/client/chat.cc
parent95f344ad62a4ab1aaf4b4d3307ce9805e2534d8e (diff)
updated documentation,
added FIXME, corrected trivial compile error
Diffstat (limited to 'src/client/chat.cc')
-rw-r--r--src/client/chat.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/chat.cc b/src/client/chat.cc
index 013d525..bdce6d8 100644
--- a/src/client/chat.cc
+++ b/src/client/chat.cc
@@ -181,7 +181,7 @@ void Chat::update_player_list()
for (core::GameInterface::Players::const_iterator it = core::game()->players().begin(); it != core::game()->players().end(); it++) {
ui::ListItem *listitem = new ui::ListItem(chat_playerlist, (*it)->name().c_str());
listitem->set_height(listitem->font()->height() * 1.5f);
- listitem->set_sortkey(aux::text_strip_lowercase((*it)->name());
+ listitem->set_sortkey(aux::text_strip_lowercase((*it)->name()));
}
chat_playerlist->sort();