Skip to content
Snippets Groups Projects
Commit dce94689 authored by jh10001's avatar jh10001 Committed by est31
Browse files

gettext.cpp: Fix syntax error when using MSVC

Also remove trailing whitespaces from the file
parent 714b68ad
No related branches found
No related tags found
No related merge requests found
......@@ -167,7 +167,7 @@ void init_gettext(const char *path, const std::string &configured_language) {
if (parameters != "") {
ptr_parameters = parameters.c_str();
}
/** users may start by short name in commandline without extention **/
std::string appname = argv[0];
if (appname.substr(appname.length() - 4) != ".exe") {
......@@ -184,7 +184,7 @@ void init_gettext(const char *path, const std::string &configured_language) {
NULL,
&startupinfo,
&processinfo)) {
char buffer[1024];
char buffer[1024];
FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM,
NULL,
GetLastError(),
......@@ -202,14 +202,14 @@ void init_gettext(const char *path, const std::string &configured_language) {
else {
exit(0);
}
}
#else
errorstream << "*******************************************************" << std::endl;
errorstream << "Can't apply locale workaround for server!" << std::endl;
errorstream << "Expect language to be broken!" << std::endl;
errorstream << "*******************************************************" << std::endl;
errorstream << "*******************************************************" << std::endl;
errorstream << "Can't apply locale workaround for server!" << std::endl;
errorstream << "Expect language to be broken!" << std::endl;
errorstream << "*******************************************************" << std::endl;
#endif
}
setlocale(LC_ALL,configured_language.c_str());
#else // Mingw
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment