summaryrefslogtreecommitdiff
path: root/src/installationmanager.h
diff options
context:
space:
mode:
authorTannin <sherb@gmx.net>2015-10-10 19:35:18 +0200
committerTannin <sherb@gmx.net>2015-10-10 19:35:18 +0200
commit90d87a0cf75be44da34c3c3282f82e5b3a399168 (patch)
tree8fd5a7c6fa519d2b40e66bcddde747f72b920d70 /src/installationmanager.h
parent115315df2809fb66eb5b18b85f089da457ccc19b (diff)
fixed progress dialogs appearing on startup
Appears to be a new bug in qt or maybe incompatibility with Windows 10: All Progress dialogs were made visibly automatically a few seconds after application startup. This was "fixed" by creating the dialog dynamically on demand
Diffstat (limited to 'src/installationmanager.h')
-rw-r--r--src/installationmanager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/installationmanager.h b/src/installationmanager.h
index d4b4f7dc..111b41f5 100644
--- a/src/installationmanager.h
+++ b/src/installationmanager.h
@@ -208,7 +208,7 @@ private:
Archive *m_CurrentArchive;
QString m_CurrentFile;
- QProgressDialog m_InstallationProgress;
+ QProgressDialog *m_InstallationProgress { nullptr };
std::set<QString> m_TempFilesToDelete;