summaryrefslogtreecommitdiff
path: root/src/resources
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-12-25 03:08:37 +0300
committerAndrei Karas <akaras@inbox.ru>2012-12-25 03:08:37 +0300
commit39029943851dfc318fabb95357e00b81d2735547 (patch)
treedfd195791587c51e6dca166dda8a016a1760d3bf /src/resources
parent10f59701112130cf953a2af7ef4ae82d9d823fe6 (diff)
downloadplus-39029943851dfc318fabb95357e00b81d2735547.tar.gz
plus-39029943851dfc318fabb95357e00b81d2735547.tar.bz2
plus-39029943851dfc318fabb95357e00b81d2735547.tar.xz
plus-39029943851dfc318fabb95357e00b81d2735547.zip
Improve empty strings manipulation.
Diffstat (limited to 'src/resources')
-rw-r--r--src/resources/itemdb.cpp2
-rw-r--r--src/resources/iteminfo.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/itemdb.cpp b/src/resources/itemdb.cpp
index c6a854c33..91e82d68b 100644
--- a/src/resources/itemdb.cpp
+++ b/src/resources/itemdb.cpp
@@ -226,7 +226,7 @@ void ItemDB::load()
if (id <= -1 && id > -100)
colors = "hair";
else
- colors = "";
+ colors.clear();
}
std::string tags[3];
diff --git a/src/resources/iteminfo.cpp b/src/resources/iteminfo.cpp
index e7c20aa6f..f78674913 100644
--- a/src/resources/iteminfo.cpp
+++ b/src/resources/iteminfo.cpp
@@ -155,7 +155,7 @@ void ItemInfo::setColorsList(std::string name)
if (name.empty())
{
mColors = nullptr;
- mColorList = "";
+ mColorList.clear();
}
else
{