]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/stdpaths.cpp
better documentation for wxWindow::SetSizerAndFit()
[wxWidgets.git] / src / os2 / stdpaths.cpp
index 86a91d3e0cc60a31dbeec98263b8d1b0bebae66b..98cf196f241f3a38be6c21fb88bd75aefe24cb92 100644 (file)
@@ -20,6 +20,8 @@
 // for compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
+#if wxUSE_STDPATHS
+
 #ifdef __BORLANDC__
     #pragma hdrstop
 #endif
@@ -54,7 +56,7 @@ wxString wxStandardPaths::GetInstallPrefix() const
     {
         wxStandardPaths *self = wx_const_cast(wxStandardPaths *, this);
 
-       self->m_prefix = _T("/usr/local");
+        self->m_prefix = _T("/usr/local");
     }
     return m_prefix;
 }
@@ -80,10 +82,12 @@ wxString wxStandardPaths::GetDataDir() const
 
 wxString wxStandardPaths::GetUserDataDir() const
 {
-    return AppendAppName(wxFileName::GetHomeDir() + _T("\\."));
+    return AppendAppInfo(wxFileName::GetHomeDir() + _T("\\."));
 }
 
 wxString wxStandardPaths::GetPluginsDir() const
 {
     return wxString();
 }
+
+#endif // wxUSE_STDPATHS