mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Set SleepApp folder location to DocumentsLocation, not HomeLocation
This commit is contained in:
parent
79a2b1abc3
commit
a9cab49a6b
@ -53,22 +53,10 @@ const QString & getUserName()
|
|||||||
|
|
||||||
const QString & GetAppRoot()
|
const QString & GetAppRoot()
|
||||||
{
|
{
|
||||||
static QString HomeAppRoot=QDesktopServices::storageLocation(QDesktopServices::HomeLocation)+"/"+AppRoot;
|
// Should it go here: QDesktopServices::DataLocation ???
|
||||||
|
|
||||||
// wxLogMessage(wxStandardPathsBase::Get().GetUserDataDir());
|
static QString HomeAppRoot=QDesktopServices::storageLocation(QDesktopServices::DocumentsLocation)+"/"+AppRoot;
|
||||||
|
|
||||||
//HomeAppRoot=s+wxFileName::GetPathSeparator();
|
|
||||||
|
|
||||||
/*#if defined(__WXMSW__)
|
|
||||||
// This conveniently maps to unix home directory for now in wine.. Change before release if necessary..
|
|
||||||
HomeAppRoot=wxGetHomeDir()+"/"+wxT("My Documents")+"/"+AppRoot;
|
|
||||||
#elif defined(__UNIX__)
|
|
||||||
HomeAppRoot=wxGetHomeDir()+"/"+AppRoot;
|
|
||||||
#elif defined(__WXMAC__)
|
|
||||||
// I have no idea
|
|
||||||
HomeAppRoot=wxGetHomeDir()+"/"+AppRoot;
|
|
||||||
#endif
|
|
||||||
//HomeAppRoot+=wxFileName::GetPathSeparator(); // Trailing separator */
|
|
||||||
return HomeAppRoot;
|
return HomeAppRoot;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user