diff options
| author | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2017-12-13 15:58:43 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-13 15:58:43 -0600 |
| commit | 554b46847589fffb6cd7bc5c54689665c34ed95b (patch) | |
| tree | 235f1cad320f73e6b22cdf330d9a14d42bd33092 /src/mainwindow.h | |
| parent | e4b952278d978567af3210d6a4be992eef3ba205 (diff) | |
| parent | 604d86ed07711651bc71871f6d37a794d916da6a (diff) | |
Merge pull request #148 from erasmux/lockeddialog_fixes
Lockeddialog fixes
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 {
|
