mirror of https://github.com/procxx/kepka.git
Fix path choosing for Windows Store version.
This commit is contained in:
parent
13d22947df
commit
f50c50a152
|
@ -341,9 +341,10 @@ void start(not_null<Core::Launcher*> launcher) {
|
||||||
|
|
||||||
if (cAlphaVersion()) {
|
if (cAlphaVersion()) {
|
||||||
workingDirChosen = true;
|
workingDirChosen = true;
|
||||||
|
} else {
|
||||||
|
|
||||||
#if defined Q_OS_MAC || defined Q_OS_LINUX
|
#if defined Q_OS_MAC || defined Q_OS_LINUX
|
||||||
} else {
|
|
||||||
if (!cWorkingDir().isEmpty()) {
|
if (!cWorkingDir().isEmpty()) {
|
||||||
// This value must come from TelegramForcePortable
|
// This value must come from TelegramForcePortable
|
||||||
// or from the "-workdir" command line argument.
|
// or from the "-workdir" command line argument.
|
||||||
|
@ -362,11 +363,12 @@ void start(not_null<Core::Launcher*> launcher) {
|
||||||
#endif // Q_OS_LINUX && !_DEBUG
|
#endif // Q_OS_LINUX && !_DEBUG
|
||||||
|
|
||||||
#elif defined Q_OS_WINRT // Q_OS_MAC || Q_OS_LINUX
|
#elif defined Q_OS_WINRT // Q_OS_MAC || Q_OS_LINUX
|
||||||
} else {
|
|
||||||
cForceWorkingDir(psAppDataPath());
|
cForceWorkingDir(psAppDataPath());
|
||||||
workingDirChosen = true;
|
workingDirChosen = true;
|
||||||
|
|
||||||
#elif defined OS_WIN_STORE // Q_OS_MAC || Q_OS_LINUX || Q_OS_WINRT
|
#elif defined OS_WIN_STORE // Q_OS_MAC || Q_OS_LINUX || Q_OS_WINRT
|
||||||
|
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
cForceWorkingDir(cExeDir());
|
cForceWorkingDir(cExeDir());
|
||||||
#else // _DEBUG
|
#else // _DEBUG
|
||||||
|
@ -375,7 +377,7 @@ void start(not_null<Core::Launcher*> launcher) {
|
||||||
workingDirChosen = true;
|
workingDirChosen = true;
|
||||||
|
|
||||||
#elif defined Q_OS_WIN
|
#elif defined Q_OS_WIN
|
||||||
} else {
|
|
||||||
if (!cWorkingDir().isEmpty()) {
|
if (!cWorkingDir().isEmpty()) {
|
||||||
// This value must come from TelegramForcePortable
|
// This value must come from TelegramForcePortable
|
||||||
// or from the "-workdir" command line argument.
|
// or from the "-workdir" command line argument.
|
||||||
|
@ -384,6 +386,7 @@ void start(not_null<Core::Launcher*> launcher) {
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // Q_OS_MAC || Q_OS_LINUX || Q_OS_WINRT || OS_WIN_STORE
|
#endif // Q_OS_MAC || Q_OS_LINUX || Q_OS_WINRT || OS_WIN_STORE
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
LogsData = new LogsDataFields();
|
LogsData = new LogsDataFields();
|
||||||
|
|
Loading…
Reference in New Issue