summaryrefslogtreecommitdiff
path: root/src/gui/popupmenu.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-06-05 20:25:31 +0300
committerAndrei Karas <akaras@inbox.ru>2011-06-05 20:25:31 +0300
commitd8ed0b7e0c9015ee5f8212e6325b3b99b96c6e54 (patch)
treea0e2cf622bea241a64ec36b8bd2ba1c15e24cdfe /src/gui/popupmenu.cpp
parentbdbad5330716fde9952924190b60341d05a089d1 (diff)
downloadplus-d8ed0b7e0c9015ee5f8212e6325b3b99b96c6e54.tar.gz
plus-d8ed0b7e0c9015ee5f8212e6325b3b99b96c6e54.tar.bz2
plus-d8ed0b7e0c9015ee5f8212e6325b3b99b96c6e54.tar.xz
plus-d8ed0b7e0c9015ee5f8212e6325b3b99b96c6e54.zip
Add space before gender sign.
Diffstat (limited to 'src/gui/popupmenu.cpp')
-rw-r--r--src/gui/popupmenu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/popupmenu.cpp b/src/gui/popupmenu.cpp
index a9905d4ca..8497b2924 100644
--- a/src/gui/popupmenu.cpp
+++ b/src/gui/popupmenu.cpp
@@ -118,7 +118,7 @@ void PopupMenu::showPopup(int x, int y, Being *being)
const std::string &name = mNick;
- mBrowserBox->addRow(name + being->getGenderSign());
+ mBrowserBox->addRow(name + being->getGenderSignWithSpace());
switch (being->getType())
{
@@ -325,7 +325,7 @@ void PopupMenu::showPopup(int x, int y, std::list<Being*> &beings)
{
mBrowserBox->addRow(strprintf("@@player_%u|%s >@@",
being->getId(), (being->getName()
- + being->getGenderSign()).c_str()));
+ + being->getGenderSignWithSpace()).c_str()));
}
}
mBrowserBox->addRow("##3---");