diff options
Diffstat (limited to 'shared/string_conv.h')
-rw-r--r-- | shared/string_conv.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/string_conv.h b/shared/string_conv.h index 24cb521e..248605f6 100644 --- a/shared/string_conv.h +++ b/shared/string_conv.h @@ -10,7 +10,7 @@ #include <wx/string.h> #include "zstring.h" -namespace ffs3 +namespace zen { //conversion from Zstring to wxString wxString zToWx(const Zstring& str); @@ -74,7 +74,7 @@ wxString zToWx(const Zchar* str) inline wxString zToWx(Zchar ch) { - return zToWx(Zstring(ch)); + return zToWx(Zstring() + ch); } //----------------------------------------------------------------- |