X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2b147f2e19c90ea74a4f96260ef8954a9bfbe2f1..b2447e8408982b9a2528a56ec00010458e70f4db:/src/os2/stdpaths.cpp?ds=sidebyside diff --git a/src/os2/stdpaths.cpp b/src/os2/stdpaths.cpp index 98cf196f24..3537d92e26 100644 --- a/src/os2/stdpaths.cpp +++ b/src/os2/stdpaths.cpp @@ -1,12 +1,12 @@ /////////////////////////////////////////////////////////////////////////////// -// Name: unix/stdpaths.cpp +// Name: src/os2/stdpaths.cpp // Purpose: wxStandardPaths implementation for OS/2 systems // Author: Stefan Neis // Modified by: // Created: 2004-11-06 // RCS-ID: $Id$ // Copyright: (c) 2004 Stefan Neis -// License: wxWindows license +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// // ============================================================================ @@ -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 AppendAppInfo(wxFileName::GetHomeDir() + _T("\\.")); + return AppendAppInfo(wxFileName::GetHomeDir() + wxT("\\.")); } wxString wxStandardPaths::GetPluginsDir() const