X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3abcfa9b7f9be013f6d2eea91f524710c7fc69fe..9fbb7d80f84efc87dc996a49c6da97cda9048f86:/src/unix/stdpaths.cpp?ds=sidebyside diff --git a/src/unix/stdpaths.cpp b/src/unix/stdpaths.cpp index cce3dc9eb1..edbaef8fed 100644 --- a/src/unix/stdpaths.cpp +++ b/src/unix/stdpaths.cpp @@ -26,14 +26,14 @@ #if wxUSE_STDPATHS +#include "wx/stdpaths.h" + #ifndef WX_PRECOMP - #include "wx/app.h" + #include "wx/utils.h" #endif //WX_PRECOMP #include "wx/filename.h" -#include "wx/stdpaths.h" - #if defined( __LINUX__ ) || defined( __VMS ) #include #endif @@ -106,11 +106,9 @@ wxStandardPaths::GetLocalizedResourcesDir(const wxChar *lang, // wxStandardPaths implementation for Unix // ============================================================================ -void wxStandardPaths::DetectPrefix() +wxString wxStandardPaths::GetExecutablePath() const { #ifdef __LINUX__ - // under Linux, we can try to infer the prefix from the location of the - // executable wxString exeStr; char buf[4096]; @@ -137,6 +135,17 @@ void wxStandardPaths::DetectPrefix() wxGetEnv(wxT(" "), &exeStr); } + if ( !exeStr.empty() ) + return exeStr; +#endif // __LINUX__ + + return wxStandardPathsBase::GetExecutablePath(); +} + +void wxStandardPaths::DetectPrefix() +{ + // we can try to infer the prefix from the location of the executable + wxString exeStr = GetExecutablePath(); if ( !exeStr.empty() ) { // consider that we're in the last "bin" subdirectory of our prefix @@ -144,7 +153,6 @@ void wxStandardPaths::DetectPrefix() if ( pos != wxString::npos ) m_prefix.assign(exeStr, 0, pos); } -#endif // __LINUX__ if ( m_prefix.empty() ) {