aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorEugene Sandulenko2019-10-04 12:12:27 +0200
committerEugene Sandulenko2019-10-04 15:54:48 +0200
commit72a5d9d4baa569c4f3904fd8180a07da937090ed (patch)
tree4562874c09968e0a71661718ad03e99da2ced5a5 /common
parent8ee774fea9679493f9e151e3b2703a703fd9ebfc (diff)
downloadscummvm-rg350-72a5d9d4baa569c4f3904fd8180a07da937090ed.tar.gz
scummvm-rg350-72a5d9d4baa569c4f3904fd8180a07da937090ed.tar.bz2
scummvm-rg350-72a5d9d4baa569c4f3904fd8180a07da937090ed.zip
JANITORIAL: Whitespace fixes
Diffstat (limited to 'common')
-rw-r--r--common/ustr.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/common/ustr.cpp b/common/ustr.cpp
index f3d1b7b853..c53c4286f7 100644
--- a/common/ustr.cpp
+++ b/common/ustr.cpp
@@ -500,7 +500,7 @@ String convertUtf32ToUtf8(const U32String &u32str) {
bytesToWrite = 3;
ch = 0x0000FFFD;
}
-
+
Common::String buffer;
switch (bytesToWrite) {
@@ -593,15 +593,15 @@ static const uint32 g_windows1253ConversionTable[] = {0x20AC, 0x0081, 0x201A, 0x
0x03C0, 0x03C1, 0x03C2, 0x03C3, 0x03C4, 0x03C5, 0x03C6, 0x03C7,
0x03C8, 0x03C9, 0x03CA, 0x03CB, 0x03CC, 0x03CD, 0x03CE, 0x00FF};
-static const uint32 g_windows1254ConversionTable[] = {0x20AC, 0x0081, 0x201A, 0x0192, 0x201E, 0x2026, 0x2020, 0x2021,
- 0x02C6, 0x2030, 0x0160, 0x2039, 0x0152, 0x008D, 0x008E, 0x008F,
- 0x0090, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014,
- 0x02DC, 0x2122, 0x0161, 0x203A, 0x0153, 0x009D, 0x009E, 0x0178,
- 0x00A0, 0x00A1, 0x00A2, 0x00A3, 0x00A4, 0x00A5, 0x00A6, 0x00A7,
+static const uint32 g_windows1254ConversionTable[] = {0x20AC, 0x0081, 0x201A, 0x0192, 0x201E, 0x2026, 0x2020, 0x2021,
+ 0x02C6, 0x2030, 0x0160, 0x2039, 0x0152, 0x008D, 0x008E, 0x008F,
+ 0x0090, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014,
+ 0x02DC, 0x2122, 0x0161, 0x203A, 0x0153, 0x009D, 0x009E, 0x0178,
+ 0x00A0, 0x00A1, 0x00A2, 0x00A3, 0x00A4, 0x00A5, 0x00A6, 0x00A7,
0x00A8, 0x00A9, 0x00AA, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x00AF,
0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x00B4, 0x00B5, 0x00B6, 0x00B7,
0x00B8, 0x00B9, 0x00BA, 0x00BB, 0x00BC, 0x00BD, 0x00BE, 0x00BF,
- 0x00C0, 0x00C1, 0x00C2, 0x00C3, 0x00C4, 0x00C5, 0x00C6, 0x00C7,
+ 0x00C0, 0x00C1, 0x00C2, 0x00C3, 0x00C4, 0x00C5, 0x00C6, 0x00C7,
0x00C8, 0x00C9, 0x00CA, 0x00CB, 0x00CC, 0x00CD, 0x00CE, 0x00CF,
0x011E, 0x00D1, 0x00D2, 0x00D3, 0x00D4, 0x00D5, 0x00D6, 0x00D7,
0x00D8, 0x00D9, 0x00DA, 0x00DB, 0x00DC, 0x0130, 0x015E, 0x00DF,
@@ -726,7 +726,7 @@ String convertFromU32String(const U32String &string, CodePage page) {
charsetString += string[i];
continue;
}
-
+
if (!conversionTable) {
continue;
}
@@ -737,7 +737,7 @@ String convertFromU32String(const U32String &string, CodePage page) {
break;
}
}
- }
+ }
return charsetString;
}