-
This patch gets rid of these warnings:
/usr/local/wxWidgets-cvsu/include/wx-2.6/wx/vector.h:
In member function 'const void*
wxVectorBase::GetItem(size_t) const':
/usr/local/wxWidgets-cvsu/include/wx-2.6/wx/vector.h:51:
warning: comparison of unsigned expression >= 0 is
always true
/usr/local/wxWidgets-cvsu/include/wx-2.6/wx/vector.h:
In member function 'void...
2005-08-05 14:05:34 UTC in wxWidgets
-
Logged In: YES
user_id=1089014
wxFileName::GetFullPath() returns a wxString. Anything using a wxString
will not work in UNICODE. The wxString must somehow be converted
to a multibyte representation. Please correct me if I am wrong, but
in current wx code wxFileConv is hard coded, or is there a way i can
change it programatically? In an UNICODE build we must have a
way to access an...
2005-03-15 01:42:57 UTC in wxWidgets
-
Logged In: YES
user_id=1089014
I am sorry for the multiple posting, I really don't understand what happened,
maybe an issue with my browser?.
2005-03-13 02:01:14 UTC in wxWidgets
-
Logged In: YES
user_id=1089014
Well, wxStat has an added functionality that does not match the
standard C foo(), namely to do an automatic file name conversion, and
that is the problem. The proper solution would be then not to do any
conversion at all, and then the programmer would be free to pass the
correct string to stat.
Please, take a look at the patch, it is really simple, I...
2005-03-11 10:49:15 UTC in wxWidgets
-
Logged In: YES
user_id=1089014
Well, wxStat has an added functionality that does not match the
standard C foo(), namely to do an automatic file name conversion, and
that is the problem. The proper solution would be then not to do any
conversion at all, and then the programmer would be free to pass the
correct string to stat.
Please, take a look at the patch, it is really simple, I...
2005-03-10 19:02:23 UTC in wxWidgets
-
Logged In: YES
user_id=1089014
Well, wxStat has an added functionality that does not match the
standard C foo(), namely to do an automatic file name conversion, and
that is the problem. The proper solution would be then not to do any
conversion at all, and then the programmer would be free to pass the
correct string to stat.
Please, take a look at the patch, it is really simple, I...
2005-03-10 17:07:13 UTC in wxWidgets
-
When a program using UNICODE'd wxWidgets is run with an UTF-
8 locale, it is unable to access files and directories with extended
ANSI chars in the name. This is because the default file name and
directory name conversion is to convert to UTF-8.
This patch adds an optional conversion parameter to the following
functions: wxStat, wxFileExists, wxPathExists, wxCopyFile and...
2005-03-10 16:43:18 UTC in wxWidgets