| 57 | } |
| 58 | |
| 59 | wxString GetAppDir() |
| 60 | { |
| 61 | const char* env = getenv("APPDIR"); |
| 62 | return env ? wxString::FromUTF8(env) : wxString(); |
| 63 | } |
| 64 | |
| 65 | // Resolve the XDG user data dir per the basedir spec. Don't derive from |
| 66 | // wxStandardPaths::GetUserDataDir() — wx returns "$HOME/.<appname>" for |
no test coverage detected