diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-02-15 21:30:58 +0100 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-02-15 21:33:08 +0100 |
commit | a6623430aa11b02f93761d27c25db9bb4157ec6f (patch) | |
tree | fbee4b379bbe786a0acfbf5a21d7bc85d88ff77f /src/gui/char_select.cpp | |
parent | 2398fc21de78bb720de672355c7972999a92e47a (diff) | |
download | mana-client-a6623430aa11b02f93761d27c25db9bb4157ec6f.tar.gz mana-client-a6623430aa11b02f93761d27c25db9bb4157ec6f.tar.bz2 mana-client-a6623430aa11b02f93761d27c25db9bb4157ec6f.tar.xz mana-client-a6623430aa11b02f93761d27c25db9bb4157ec6f.zip |
Fixed compiler warnings
Comparison between signed and unsigned integer expressions.
Diffstat (limited to 'src/gui/char_select.cpp')
-rw-r--r-- | src/gui/char_select.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/char_select.cpp b/src/gui/char_select.cpp index 34174275..208e3b56 100644 --- a/src/gui/char_select.cpp +++ b/src/gui/char_select.cpp @@ -203,7 +203,7 @@ void CharSelectDialog::updatePlayerInfo() mNameLabel->setCaption(strprintf(_("Name: %s"), "")); mLevelLabel->setCaption(strprintf(_("Level: %d"), 0)); mJobLevelLabel->setCaption(strprintf(_("Job Level: %d"), 0)); - mMoneyLabel->setCaption(strprintf(_("Money: %s"), 0)); + mMoneyLabel->setCaption(strprintf(_("Money: %s"), "")); mNewDelCharButton->setCaption(_("New")); mSelectButton->setEnabled(false); } |