diff options
| author | Eran Mizrahi <erasmux@gmail.com> | 2017-12-13 16:18:54 +0200 |
|---|---|---|
| committer | Eran Mizrahi <erasmux@gmail.com> | 2017-12-13 22:27:11 +0200 |
| commit | a5bb70f53bc20f36f695ac5cd9f8b91163f694eb (patch) | |
| tree | 0d6f2c1e2bce7497c59785dd6de645d741620193 /src/mainwindow.h | |
| parent | 0586b2856b0b8973e5781b9b0a1b5e5acac20532 (diff) | |
Wait for injected processes on MO close
Diffstat (limited to 'src/mainwindow.h')
| -rw-r--r-- | src/mainwindow.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h index f6f11157..575bf020 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -35,7 +35,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. //when I get round to cleaning up main.cpp
struct Executable;
class CategoryFactory;
-class LockedDialog;
+class LockedDialogBase;
class OrganizerCore;
#include "plugincontainer.h" //class PluginContainer;
class PluginListSortProxy;
@@ -348,9 +348,11 @@ private: bool m_DidUpdateMasterList;
- LockedDialog *m_LockDialog { nullptr };
+ LockedDialogBase *m_LockDialog { nullptr };
uint64_t m_LockCount { 0 };
+ bool m_closing{ false };
+
std::vector<std::pair<QString, QHeaderView*>> m_PersistedGeometry;
enum class ShortcutType {
|
