Update of /cvsroot/mahogany/M/src/wx/generic
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31255/src/wx/generic

Modified Files:
        persctrl.cpp 
Log Message:
_T("") -> wxEmptyString

Index: persctrl.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/wx/generic/persctrl.cpp,v
retrieving revision 1.94
retrieving revision 1.95
diff -b -u -2 -r1.94 -r1.95
--- persctrl.cpp        24 Nov 2005 13:30:54 -0000      1.94
+++ persctrl.cpp        16 Jan 2006 20:32:28 -0000      1.95
@@ -180,5 +180,5 @@
 
 // don't allocate memory for static objects
-wxString wxPControls::ms_pathPrefix = _T("");
+wxString wxPControls::ms_pathPrefix = wxEmptyString;
 
 // ----------------------------------------------------------------------------
@@ -484,5 +484,5 @@
     }
 
-    m_persist = new wxPHelper(realConfigPath, _T(""), config);
+    m_persist = new wxPHelper(realConfigPath, wxEmptyString, config);
     m_countSaveMax = ms_countSaveDefault;
 
@@ -507,5 +507,5 @@
 {
    m_persist->SetConfig(config);
-   m_persist->SetPath(configPath, _T(""));
+   m_persist->SetPath(configPath, wxEmptyString);
 
    if ( wxComboBox::Create(parent, id, value, pos, size, style) ) {
@@ -588,5 +588,5 @@
 void wxPTextEntry::SetConfigPath(const wxString& path)
 {
-    m_persist->SetPath(path, _T(""));
+    m_persist->SetPath(path, wxEmptyString);
 }
 
@@ -1945,5 +1945,5 @@
     configValuePath << configValueFile << _T("Path");
 
-    wxPHelper persist(ourPath, _T(""), config);
+    wxPHelper persist(ourPath, wxEmptyString, config);
 
     // if config was NULL, wxPHelper already has the global one
@@ -2103,5 +2103,5 @@
         {
             // use the last directory
-            path = config->Read(configKey, _T(""));
+            path = config->Read(configKey, wxEmptyString);
         }
 



-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
Mahogany-cvsupdates mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to