You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
669 B
15 lines
669 B
diff -Naur pgadmin3-0.9.3.orig/src/utils/misc.cpp pgadmin3-0.9.3/src/utils/misc.cpp |
|
--- pgadmin3-0.9.3.orig/src/utils/misc.cpp Mon Sep 15 00:25:44 2003 |
|
+++ pgadmin3-0.9.3/src/utils/misc.cpp Tue Sep 16 19:16:26 2003 |
|
@@ -417,9 +417,9 @@ |
|
{ |
|
str=wxString(' ', nLen); |
|
if (format) |
|
- wxConvUTF8.MB2WC((wxChar*)str.c_str(), buf, nLen); |
|
+ wxConvUTF8.MB2WC((wchar_t*)(str.c_str()), buf, nLen); |
|
else |
|
- wxConvLibc.MB2WC((wxChar*)str.c_str(), buf, nLen); |
|
+ wxConvLibc.MB2WC((wchar_t*)(str.c_str()), buf, nLen); |
|
str.Replace(wxT("\r"), wxT("")); |
|
} |
|
#else
|
|
|