X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f3d793069fabb42b4219faa3bcd29216c121c086..c765e6fb9df639bb4e65a8824ed13a42f457027b:/src/unix/stdpaths.cpp diff --git a/src/unix/stdpaths.cpp b/src/unix/stdpaths.cpp index 4089a9e06e..64ac00cc22 100644 --- a/src/unix/stdpaths.cpp +++ b/src/unix/stdpaths.cpp @@ -197,7 +197,11 @@ wxString wxStandardPaths::GetDataDir() const // practice for running well-written (and so using wxStandardPaths to find // their files) wx applications without installing them static const wxString - envOverride(getenv("WX_" + wxTheApp->GetAppName().Upper() + "_DATA_DIR")); + envOverride( + getenv( + ("WX_" + wxTheApp->GetAppName().Upper() + "_DATA_DIR").c_str() + ) + ); if ( !envOverride.empty() ) return envOverride;