summaryrefslogtreecommitdiff
path: root/src/citra_qt/main.h
diff options
context:
space:
mode:
authorGravatar TheKoopaKingdom2017-04-13 01:18:54 -0400
committerGravatar TheKoopaKingdom2017-06-02 18:28:14 -0400
commita8aef599e02e336f9ecb8d5cfc50aa856ea0a1c7 (patch)
tree37a7edc6a27eff75c96117203f48c9f1ec640b97 /src/citra_qt/main.h
parentOptimized messages that were repetitive and added ability for core errors to ... (diff)
downloadyuzu-a8aef599e02e336f9ecb8d5cfc50aa856ea0a1c7.tar.gz
yuzu-a8aef599e02e336f9ecb8d5cfc50aa856ea0a1c7.tar.xz
yuzu-a8aef599e02e336f9ecb8d5cfc50aa856ea0a1c7.zip
Created a whitelist of system archives to prevent false positives creating dialogs.
Diffstat (limited to 'src/citra_qt/main.h')
-rw-r--r--src/citra_qt/main.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/citra_qt/main.h b/src/citra_qt/main.h
index eb2b055f6..952a50974 100644
--- a/src/citra_qt/main.h
+++ b/src/citra_qt/main.h
@@ -8,6 +8,7 @@
8#include <memory> 8#include <memory>
9#include <QMainWindow> 9#include <QMainWindow>
10#include <QTimer> 10#include <QTimer>
11#include "core/core.h"
11#include "ui_main.h" 12#include "ui_main.h"
12 13
13class Config; 14class Config;
@@ -125,7 +126,7 @@ private slots:
125 void OnDisplayTitleBars(bool); 126 void OnDisplayTitleBars(bool);
126 void ToggleWindowMode(); 127 void ToggleWindowMode();
127 void OnCreateGraphicsSurfaceViewer(); 128 void OnCreateGraphicsSurfaceViewer();
128 void OnCoreError(Core::System::ResultStatus, boost::optional<std::string>); 129 void OnCoreError(Core::System::ResultStatus, std::string);
129 130
130private: 131private:
131 void UpdateStatusBar(); 132 void UpdateStatusBar();