s/""/wxEmptyString

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57980 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2009-01-10 18:31:45 +00:00
parent eb2b6166df
commit e9c3992c39
9 changed files with 23 additions and 22 deletions

View File

@@ -14,9 +14,10 @@
It pops up a file selector box (native for Windows and GTK2.4+).
The path and filename are distinct elements of a full file pathname.
If path is "", the current directory will be used. If filename is "", no default
filename will be supplied. The wildcard determines what files are displayed in the
file selector, and file extension supplies a type extension for the required filename.
If path is wxEmptyString, the current directory will be used.
If filename is wxEmptyString, no default filename will be supplied.
The wildcard determines what files are displayed in the file selector,
and file extension supplies a type extension for the required filename.
@remarks
All implementations of the wxFileDialog provide a wildcard filter. Typing a filename
@@ -272,9 +273,9 @@ public:
@header{wx/filedlg.h}
*/
wxString wxFileSelector(const wxString& message,
const wxString& default_path = "",
const wxString& default_filename = "",
const wxString& default_extension = "",
const wxString& default_path = wxEmptyString,
const wxString& default_filename = wxEmptyString,
const wxString& default_extension = wxEmptyString,
const wxString& wildcard = ".",
int flags = 0,
wxWindow* parent = NULL,