]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/stdpaths.cpp
Make Home and End keys work as expected in wxGrid.
[wxWidgets.git] / src / os2 / stdpaths.cpp
index f7ba58488bb956b6a117a3908f8182f81738acda..230297cbab1ea74118c5c4b56872f3317e60d7f4 100644 (file)
@@ -56,7 +56,7 @@ wxString wxStandardPaths::GetInstallPrefix() const
     {
         wxStandardPaths *self = const_cast<wxStandardPaths *>(this);
 
-        self->m_prefix = _T("/usr/local");
+        self->m_prefix = wxT("/usr/local");
     }
     return m_prefix;
 }
@@ -77,12 +77,12 @@ wxString wxStandardPaths::GetUserConfigDir() const
 
 wxString wxStandardPaths::GetDataDir() const
 {
-    return GetInstallPrefix() + _T("\\data");
+    return GetInstallPrefix() + wxT("\\data");
 }
 
 wxString wxStandardPaths::GetUserDataDir() const
 {
-    return AppendAppInfo(wxFileName::GetHomeDir() + _T("\\."));
+    return AppendAppInfo(wxFileName::GetHomeDir() + wxT("\\."));
 }
 
 wxString wxStandardPaths::GetPluginsDir() const