summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-04-27 21:54:19 +0200
committerGeorge Hazan <ghazan@miranda.im>2018-04-27 21:55:09 +0200
commit23b0057349dddae70298c452db43fd9699780a05 (patch)
tree756c0708b8272abc21dc71d4d7bd80f8a602e815 /plugins
parent70f9524c663150e887f124be1209d77220c3619e (diff)
fixes #1311 (Wrong langpack listed in VersionInfo)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/CrashDumper/src/utils.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/CrashDumper/src/utils.cpp b/plugins/CrashDumper/src/utils.cpp
index 7a5e8b9d4f..b86fa072f6 100644
--- a/plugins/CrashDumper/src/utils.cpp
+++ b/plugins/CrashDumper/src/utils.cpp
@@ -363,11 +363,9 @@ void GetLanguagePackString(CMStringW &buffer)
else
buffer.Append(lang);
}
- else
- buffer.Append(L"Locale id invalid");
+ else buffer.Append(L"Locale id invalid");
}
- else
- buffer.Append(L"No language pack installed");
+ else buffer.Append(L"No language pack installed");
}
void GetWow64String(CMStringW &buffer)