X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/07158944d86fc3895c24a5a9848616405d3d91db..8f79ece33306d91be746a694f3893906bba67465:/src/os2/stdpaths.cpp diff --git a/src/os2/stdpaths.cpp b/src/os2/stdpaths.cpp index bd71539125..230297cbab 100644 --- a/src/os2/stdpaths.cpp +++ b/src/os2/stdpaths.cpp @@ -54,9 +54,9 @@ wxString wxStandardPaths::GetInstallPrefix() const { if ( m_prefix.empty() ) { - wxStandardPaths *self = wx_const_cast(wxStandardPaths *, this); + wxStandardPaths *self = const_cast(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 AppendAppName(wxFileName::GetHomeDir() + _T("\\.")); + return AppendAppInfo(wxFileName::GetHomeDir() + wxT("\\.")); } wxString wxStandardPaths::GetPluginsDir() const