summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-06-28 20:57:37 +0300
committerAndrei Karas <akaras@inbox.ru>2017-06-28 20:57:57 +0300
commit2ce24da6704e12b9f76614202e58802cddcd9e37 (patch)
tree89c76c813baa740511ff5bdf9e404e286011666a /src
parentd6094cc50fad47eb7071f077e4e630cbec6c5b18 (diff)
downloadmv-2ce24da6704e12b9f76614202e58802cddcd9e37.tar.gz
mv-2ce24da6704e12b9f76614202e58802cddcd9e37.tar.bz2
mv-2ce24da6704e12b9f76614202e58802cddcd9e37.tar.xz
mv-2ce24da6704e12b9f76614202e58802cddcd9e37.zip
Fix showing item stats in item popups.
Diffstat (limited to 'src')
-rw-r--r--src/gui/popups/itempopup.cpp2
-rw-r--r--src/resources/db/itemdb.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/popups/itempopup.cpp b/src/gui/popups/itempopup.cpp
index 55f77350d..4b35b7118 100644
--- a/src/gui/popups/itempopup.cpp
+++ b/src/gui/popups/itempopup.cpp
@@ -392,7 +392,7 @@ std::string ItemPopup::getOptionsString(const ItemOptionsList *const options)
if (!effect.empty())
effect.append(" / ");
if (field->sign && value[0] != '-')
- value.append("+").append(value);
+ value = std::string("+").append(value);
const std::string format = translator->getStr(field->description);
effect.append(strprintf(format.c_str(),
value.c_str()));
diff --git a/src/resources/db/itemdb.cpp b/src/resources/db/itemdb.cpp
index 5f92fc4e0..542fa6789 100644
--- a/src/resources/db/itemdb.cpp
+++ b/src/resources/db/itemdb.cpp
@@ -145,7 +145,7 @@ static void readFields(std::string &effect,
if (!effect.empty())
effect.append(" / ");
if (field->sign && isDigit(value))
- value.append("+").append(value);
+ value = std::string("+").append(value);
const std::string format = translator->getStr(field->description);
effect.append(strprintf(format.c_str(),
value.c_str()));