return wxFileName::GetHomeDir();
}
-wxString wxStandardPaths::GetPluginsDir() const
-{
- return wxString();
-}
-
// ============================================================================
// wxStandardPaths implementation for VMS
// ============================================================================
{
wx_const_cast(wxStandardPaths *, this)->m_prefix = wxT("/sys$system");
}
+
+ return m_prefix;
}
wxString wxStandardPaths::GetConfigDir() const
return wxFileName::GetHomeDir();
}
+wxString wxStandardPaths::GetPluginsDir() const
+{
+ return wxString(); // TODO: this is wrong, it should return something
+}
+
#else // !__VMS
// ============================================================================
return AppendAppName(wxFileName::GetHomeDir() + _T("/."));
}
+wxString wxStandardPaths::GetPluginsDir() const
+{
+ return AppendAppName(GetInstallPrefix() + _T("/lib"));
+}
+
#endif // __VMS/!__VMS
#endif // wxUSE_STDPATHS