]> git.saurik.com Git - wxWidgets.git/commitdiff
s/""/wxEmptyString
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sat, 10 Jan 2009 18:31:45 +0000 (18:31 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sat, 10 Jan 2009 18:31:45 +0000 (18:31 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57980 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/combobox.h
interface/wx/dirdlg.h
interface/wx/filedlg.h
interface/wx/font.h
interface/wx/fontenum.h
interface/wx/metafile.h
interface/wx/odcombo.h
interface/wx/textdlg.h
interface/wx/utils.h

index c04b81de47ed65b4a7bb5da5fd0a38f0b64003f8..2aa5c1d63ea063678f3e1f65f1a084a564302d92 100644 (file)
@@ -99,7 +99,7 @@ public:
         @see Create(), wxValidator
     */
     wxComboBox(wxWindow* parent, wxWindowID id,
-               const wxString& value = "",
+               const wxString& value = wxEmptyString,
                const wxPoint& pos = wxDefaultPosition,
                const wxSize& size = wxDefaultSize,
                int n = 0,
index 400452315dbe9d2619bb72eb015c3f271c7f9896..1765cef770effb658ae986f6ac82e80e78689b34 100644 (file)
@@ -134,7 +134,7 @@ public:
     @header{wx/dirdlg.h}
 */
 wxString wxDirSelector(const wxString& message = wxDirSelectorPromptStr,
-                       const wxString& default_path = "",
+                       const wxString& default_path = wxEmptyString,
                        long style = 0,
                        const wxPoint& pos = wxDefaultPosition,
                        wxWindow* parent = NULL);
index 1093760f988762782cb8c7068b8361d71a359838..450f333e7fafee71a3afe309234686d40ffa7c26 100644 (file)
     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,
index e4e99ae1dc566d0c4f43d6304d6f35ccc5f0fbb1..3e6dce7ed771b990dd096e4f9747ffb28809c368 100644 (file)
@@ -313,7 +313,7 @@ public:
     wxFont(int pointSize, wxFontFamily family, int style,
            wxFontWeight weight,
            bool underline = false,
-           const wxString& faceName = "",
+           const wxString& faceName = wxEmptyString,
            wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
 
     /**
@@ -362,7 +362,7 @@ public:
     wxFont(const wxSize& pixelSize, wxFontFamily family,
            int style, wxFontWeight weight,
            bool underline = false,
-           const wxString& faceName = "",
+           const wxString& faceName = wxEmptyString,
            wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
     //@}
 
@@ -476,23 +476,23 @@ public:
     static wxFont* New(int pointSize, wxFontFamily family, int style,
                        wxFontWeight weight,
                        bool underline = false,
-                       const wxString& faceName = "",
+                       const wxString& faceName = wxEmptyString,
                        wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
     static wxFont* New(int pointSize, wxFontFamily family,
                        int flags = wxFONTFLAG_DEFAULT,
-                       const wxString& faceName = "",
+                       const wxString& faceName = wxEmptyString,
                        wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
     static wxFont* New(const wxSize& pixelSize,
                        wxFontFamily family,
                        int style,
                        wxFontWeight weight,
                        bool underline = false,
-                       const wxString& faceName = "",
+                       const wxString& faceName = wxEmptyString,
                        wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
     static wxFont* New(const wxSize& pixelSize,
                        wxFontFamily family,
                        int flags = wxFONTFLAG_DEFAULT,
-                       const wxString& faceName = "",
+                       const wxString& faceName = wxEmptyString,
                        wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
     //@}
 
index ad31d2e5244d69bfd7aae584de5a2a9ba71e5534..089443aed045e0598f6a0904cacb255727d645e5 100644 (file)
@@ -56,7 +56,7 @@ public:
         Return array of strings containing all encodings found by
         EnumerateEncodings().
     */
-    static wxArrayString GetEncodings(const wxString& facename = "");
+    static wxArrayString GetEncodings(const wxString& facename = wxEmptyString);
 
     /**
         Return array of strings containing all facenames found by
index 35afa09c4caa374801c8a193d1372947dc152ae2..8d4f7c3b28b62be7baca929389b7d22f33a554e2 100644 (file)
@@ -39,7 +39,7 @@ public:
         Constructor.
         If no filename is passed, the metafile is created in memory.
     */
-    wxMetafileDC(const wxString& filename = "");
+    wxMetafileDC(const wxString& filename = wxEmptyString);
 
     /**
         Destructor.
@@ -82,7 +82,7 @@ public:
         If a filename is given, the Windows disk metafile is read in.
         Check whether this was performed successfully by using the IsOk() member.
     */
-    wxMetafile(const wxString& filename = "");
+    wxMetafile(const wxString& filename = wxEmptyString);
 
     /**
         Destructor.
index f77cb38732ace32f89369c543a9ff2d42a8226f1..7544ba228d8276ac7dd9d5b107ffc1074083b582 100644 (file)
@@ -97,7 +97,7 @@ public:
         @see Create(), wxValidator
     */
     wxOwnerDrawnComboBox(wxWindow* parent, wxWindowID id,
-                         const wxString& value = "",
+                         const wxString& value = wxEmptyString,
                          const wxPoint& pos = wxDefaultPosition,
                          const wxSize& size = wxDefaultSize,
                          int n = 0,
@@ -153,7 +153,7 @@ public:
         @remarks Derived classes should call or replace this function.
     */
     bool Create(wxWindow* parent, wxWindowID id,
-                const wxString& value = "",
+                const wxString& value = wxEmptyString,
                 const wxPoint& pos = wxDefaultPosition,
                 const wxSize& size = wxDefaultSize,
                 int n, const wxString choices[],
index b61d9bf479d290012d26701138b1ad191dc37311..24c3b80bafe44451fcb83008d7c1874915e6637f 100644 (file)
@@ -133,7 +133,7 @@ public:
 */
 wxString wxGetTextFromUser(const wxString& message,
                            const wxString& caption = "Input text",
-                           const wxString& default_value = "",
+                           const wxString& default_value = wxEmptyString,
                            wxWindow* parent = NULL,
                            int x = wxDefaultCoord,
                            int y = wxDefaultCoord,
@@ -148,7 +148,7 @@ wxString wxGetTextFromUser(const wxString& message,
 */
 wxString wxGetPasswordFromUser(const wxString& message,
                                const wxString& caption = "Input text",
-                               const wxString& default_value = "",
+                               const wxString& default_value = wxEmptyString,
                                wxWindow* parent = NULL,
                                int x = wxDefaultCoord,
                                int y = wxDefaultCoord,
index 94e9977e610f79909b36011c36ad07f77cb8ec81..8e615d89acd1cf42e6e304f08a4d2b5d143ebbfd 100644 (file)
@@ -538,7 +538,7 @@ wxString wxGetFullHostName();
 
     @header{wx/utils.h}
 */
-wxString wxGetUserHome(const wxString& user = "");
+wxString wxGetUserHome(const wxString& user = wxEmptyString);
 
 /**
     This function returns the "user id" also known as "login name" under Unix