summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gettext.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gettext.h b/src/gettext.h
index 170d75dee..9aa6b3a27 100644
--- a/src/gettext.h
+++ b/src/gettext.h
@@ -52,7 +52,7 @@ extern wchar_t *utf8_to_wide_c(const char *str);
inline const wchar_t *wgettext(const char *str)
{
// We must check here that is not an empty string to avoid trying to translate it
- return str[0] ? utf8_to_wide_c(gettext(str)) : L"";
+ return str[0] ? utf8_to_wide_c(gettext(str)) : utf8_to_wide_c("");
}
inline std::string strgettext(const std::string &text)