summaryrefslogtreecommitdiff
path: root/src/common/Common.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/Common.cpp')
-rw-r--r--src/common/Common.cpp29
1 files changed, 15 insertions, 14 deletions
diff --git a/src/common/Common.cpp b/src/common/Common.cpp
index d92e22bdff..d117554061 100644
--- a/src/common/Common.cpp
+++ b/src/common/Common.cpp
@@ -6,22 +6,23 @@
#include "Common.h"
-char const* localeNames[TOTAL_LOCALES] = {
- "enUS",
- "koKR",
- "frFR",
- "deDE",
- "zhCN",
- "zhTW",
- "esES",
- "esMX",
- "ruRU"
+char const* localeNames[TOTAL_LOCALES] =
+{
+ "enUS",
+ "koKR",
+ "frFR",
+ "deDE",
+ "zhCN",
+ "zhTW",
+ "esES",
+ "esMX",
+ "ruRU"
};
LocaleConstant GetLocaleByName(const std::string& name)
{
for (uint32 i = 0; i < TOTAL_LOCALES; ++i)
- if (name==localeNames[i])
+ if (name == localeNames[i])
return LocaleConstant(i);
return LOCALE_enUS; // including enGB case
@@ -30,8 +31,8 @@ LocaleConstant GetLocaleByName(const std::string& name)
void CleanStringForMysqlQuery(std::string& str)
{
std::string::size_type n = 0;
- while ((n=str.find('\\')) != str.npos) str.erase(n,1);
- while ((n=str.find('"')) != str.npos) str.erase(n,1);
- while ((n=str.find('\'')) != str.npos) str.erase(n,1);
+ while ((n = str.find('\\')) != str.npos) str.erase(n, 1);
+ while ((n = str.find('"')) != str.npos) str.erase(n, 1);
+ while ((n = str.find('\'')) != str.npos) str.erase(n, 1);
}