2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 22:55:11 +00:00

Moved PsMainWindow to Platform::MainWindow, outside of pspecific module.

Currently only MSVC build is Ok, Xcode and QtCreator are broken.
This commit is contained in:
John Preston
2016-06-16 15:59:54 +03:00
parent 84f704448a
commit fd91893b51
32 changed files with 5081 additions and 3046 deletions

View File

@@ -41,8 +41,8 @@ int main(int argc, char *argv[]) {
}
// both are finished in Application::closeApplication
Logs::start(); // must be started before PlatformSpecific is started
PlatformSpecific::start(); // must be started before QApplication is created
Logs::start(); // must be started before Platform is started
Platform::start(); // must be started before QApplication is created
// prepare fake args to disable QT_STYLE_OVERRIDE env variable
// currently this is required in some desktop environments, including Xubuntu 15.10
@@ -76,7 +76,7 @@ int main(int argc, char *argv[]) {
}
SignalHandlers::finish();
PlatformSpecific::finish();
Platform::finish();
Logs::finish();
return result;