]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/stc/stc.h.in
fixes to dependency problems in win32 makefiles
[wxWidgets.git] / contrib / src / stc / stc.h.in
index 70addc7abbc965c0a1bf532eba0e4136b3904b8f..e1c17422a17d3bec72daf25f7bafdb58bc3c8d57 100644 (file)
@@ -463,13 +463,14 @@ inline wxString stc2wx(const char* str) {
 #endif
 }
 
-inline wxString stc2wx(const char* str, size_t len) {
 #if wxUSE_UNICODE
-    return wxString(str, wxConvUTF8, len);
+wxString stc2wx(const char* str, size_t len);
 #else
+inline wxString stc2wx(const char* str, size_t len) {
     return wxString(str, len);
-#endif
 }
+#endif
+
 
 #if wxUSE_UNICODE
 inline const wxWX2MBbuf wx2stc(const wxString& str) {