the very last traces of wxTString removed
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@296 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -328,10 +328,10 @@ wxDefaultFileSelector(bool load, const char *what, const char *extension, const
|
||||
char prompt[50];
|
||||
wxString str;
|
||||
if (load)
|
||||
str = (const char*) wxTString("Load %s file");
|
||||
str = "Load %s file";
|
||||
else
|
||||
str = (const char*) wxTString("Save %s file");
|
||||
sprintf(prompt, str, what);
|
||||
str = "Save %s file";
|
||||
sprintf(prompt, wxGetTranslation(str), what);
|
||||
|
||||
if (*ext == '.') ext++;
|
||||
char wild[60];
|
||||
|
Reference in New Issue
Block a user