summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2020-02-05 20:23:53 -0500
committerisanae <14251494+isanae@users.noreply.github.com>2020-02-05 20:23:53 -0500
commit03ee407c346845484629c2a6afef39a13f0b9a3d (patch)
tree1057bbbefcfa0cf1518c97b3695dcf0f2f60fd9b /src/mainwindow.h
parentea0429342ade6e908807ff1faef7c8f7e5e46b75 (diff)
fixed LogModel not being thread safe
optimizations: - create BrowserDialog on demand - scroll to bottom of log in a timer, coalesces fast logging - disabled md5 of dlls
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 608bfa64..afc434ef 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -21,7 +21,6 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#define MAINWINDOW_H
#include "bsafolder.h"
-#include "browserdialog.h"
#include "delayedfilewriter.h"
#include "errorcodes.h"
#include "imoinfo.h"
@@ -39,6 +38,7 @@ class CategoryFactory;
class OrganizerCore;
class FilterList;
class DataTab;
+class BrowserDialog;
class PluginListSortProxy;
namespace BSA { class Archive; }
@@ -341,7 +341,7 @@ private:
QString m_CurrentLanguage;
std::vector<QTranslator*> m_Translators;
- BrowserDialog m_IntegratedBrowser;
+ std::unique_ptr<BrowserDialog> m_IntegratedBrowser;
QFileSystemWatcher m_SavesWatcher;