aboutsummaryrefslogtreecommitdiff
path: root/common/translation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/translation.cpp')
-rwxr-xr-xcommon/translation.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/translation.cpp b/common/translation.cpp
index 7346441d27..7dfb3fcc8e 100755
--- a/common/translation.cpp
+++ b/common/translation.cpp
@@ -119,7 +119,11 @@ bool TranslationManager::convert(const char *message) {
char *msgcpy = new char[len + 1];
strcpy(msgcpy, message);
char *msg = msgcpy;
+#ifdef ICONV_USES_CONST
+ const char **pmsg = &msg;
+#else
char **pmsg = &msg;
+#endif
// Preparing conversion destination
size_t len2 = _sizeconv;