summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-07-07 16:53:05 +0300
committerAndrei Karas <akaras@inbox.ru>2016-07-07 16:53:05 +0300
commitab2e469db696f6407f7953638ac0a4036ec713ad (patch)
treee90eb19808d6213bcd6e96485124be4901276b50
parente84760c24b479ae735cc64e72cd4a42551fba7a8 (diff)
downloadplus-ab2e469db696f6407f7953638ac0a4036ec713ad.tar.gz
plus-ab2e469db696f6407f7953638ac0a4036ec713ad.tar.bz2
plus-ab2e469db696f6407f7953638ac0a4036ec713ad.tar.xz
plus-ab2e469db696f6407f7953638ac0a4036ec713ad.zip
Fix typo pallette -> palette.s20160708
-rw-r--r--src/resources/iteminfo.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/resources/iteminfo.cpp b/src/resources/iteminfo.cpp
index aa5d81b8e..2b501627c 100644
--- a/src/resources/iteminfo.cpp
+++ b/src/resources/iteminfo.cpp
@@ -417,7 +417,7 @@ std::string ItemInfo::getColorName(const ItemColor idx) const
it = mColorsList->find(idx);
if (it == mColorsList->end())
{
- reportAlways("Color %d for pallette %s not found",
+ reportAlways("Color %d for palette %s not found",
CAST_S32(idx),
mColorsListName.c_str());
return std::string();
@@ -434,7 +434,7 @@ std::string ItemInfo::getColor(const ItemColor idx) const
it = mColorsList->find(idx);
if (it == mColorsList->end())
{
- reportAlways("Color %d for pallette %s not found",
+ reportAlways("Color %d for palette %s not found",
CAST_S32(idx),
mColorsListName.c_str());
return std::string();
@@ -451,7 +451,7 @@ std::string ItemInfo::getIconColorName(const ItemColor idx) const
it = mIconColorsList->find(idx);
if (it == mIconColorsList->end())
{
- reportAlways("Color %d for pallette %s not found",
+ reportAlways("Color %d for palette %s not found",
CAST_S32(idx),
mColorsListName.c_str());
return std::string();
@@ -468,7 +468,7 @@ std::string ItemInfo::getIconColor(const ItemColor idx) const
it = mIconColorsList->find(idx);
if (it == mIconColorsList->end())
{
- reportAlways("Color %d for pallette %s not found",
+ reportAlways("Color %d for palette %s not found",
CAST_S32(idx),
mColorsListName.c_str());
return std::string();