X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/07158944d86fc3895c24a5a9848616405d3d91db..ae901b234c4a0aa7c1777b3bd181dd7f8517ad21:/src/os2/stdpaths.cpp?ds=sidebyside

diff --git a/src/os2/stdpaths.cpp b/src/os2/stdpaths.cpp
index bd71539125..f7ba58488b 100644
--- a/src/os2/stdpaths.cpp
+++ b/src/os2/stdpaths.cpp
@@ -54,7 +54,7 @@ wxString wxStandardPaths::GetInstallPrefix() const
 {
     if ( m_prefix.empty() )
     {
-        wxStandardPaths *self = wx_const_cast(wxStandardPaths *, this);
+        wxStandardPaths *self = const_cast<wxStandardPaths *>(this);
 
         self->m_prefix = _T("/usr/local");
     }
@@ -82,7 +82,7 @@ wxString wxStandardPaths::GetDataDir() const
 
 wxString wxStandardPaths::GetUserDataDir() const
 {
-    return AppendAppName(wxFileName::GetHomeDir() + _T("\\."));
+    return AppendAppInfo(wxFileName::GetHomeDir() + _T("\\."));
 }
 
 wxString wxStandardPaths::GetPluginsDir() const