diff options
Diffstat (limited to 'src/citra_qt')
| -rw-r--r-- | src/citra_qt/bootmanager.cpp | 4 | ||||
| -rw-r--r-- | src/citra_qt/config.cpp | 2 | ||||
| -rw-r--r-- | src/citra_qt/config.h | 4 | ||||
| -rw-r--r-- | src/citra_qt/debugger/disassembler.cpp | 2 | ||||
| -rw-r--r-- | src/citra_qt/hotkeys.cpp | 5 | ||||
| -rw-r--r-- | src/citra_qt/hotkeys.h | 4 | ||||
| -rw-r--r-- | src/citra_qt/main.cpp | 6 |
7 files changed, 17 insertions, 10 deletions
diff --git a/src/citra_qt/bootmanager.cpp b/src/citra_qt/bootmanager.cpp index 3db09c65b..9d36364dd 100644 --- a/src/citra_qt/bootmanager.cpp +++ b/src/citra_qt/bootmanager.cpp | |||
| @@ -11,6 +11,10 @@ | |||
| 11 | #include "bootmanager.h" | 11 | #include "bootmanager.h" |
| 12 | #include "main.h" | 12 | #include "main.h" |
| 13 | 13 | ||
| 14 | #include "common/string_util.h" | ||
| 15 | #include "common/scm_rev.h" | ||
| 16 | #include "common/key_map.h" | ||
| 17 | |||
| 14 | #include "core/core.h" | 18 | #include "core/core.h" |
| 15 | #include "core/settings.h" | 19 | #include "core/settings.h" |
| 16 | #include "core/system.h" | 20 | #include "core/system.h" |
diff --git a/src/citra_qt/config.cpp b/src/citra_qt/config.cpp index 2a9af1f38..5c056446e 100644 --- a/src/citra_qt/config.cpp +++ b/src/citra_qt/config.cpp | |||
| @@ -2,11 +2,11 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <QSettings> | ||
| 5 | #include <QString> | 6 | #include <QString> |
| 6 | #include <QStringList> | 7 | #include <QStringList> |
| 7 | 8 | ||
| 8 | #include "core/settings.h" | 9 | #include "core/settings.h" |
| 9 | #include "core/core.h" | ||
| 10 | #include "common/file_util.h" | 10 | #include "common/file_util.h" |
| 11 | 11 | ||
| 12 | #include "config.h" | 12 | #include "config.h" |
diff --git a/src/citra_qt/config.h b/src/citra_qt/config.h index 4485cae73..dd0b2ef0b 100644 --- a/src/citra_qt/config.h +++ b/src/citra_qt/config.h | |||
| @@ -4,9 +4,9 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <QSettings> | 7 | #include <string> |
| 8 | 8 | ||
| 9 | #include "common/common_types.h" | 9 | class QSettings; |
| 10 | 10 | ||
| 11 | class Config { | 11 | class Config { |
| 12 | QSettings* qt_config; | 12 | QSettings* qt_config; |
diff --git a/src/citra_qt/debugger/disassembler.cpp b/src/citra_qt/debugger/disassembler.cpp index e99ec1b30..b41c40a0e 100644 --- a/src/citra_qt/debugger/disassembler.cpp +++ b/src/citra_qt/debugger/disassembler.cpp | |||
| @@ -2,6 +2,8 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <QShortcut> | ||
| 6 | |||
| 5 | #include "disassembler.h" | 7 | #include "disassembler.h" |
| 6 | 8 | ||
| 7 | #include "../bootmanager.h" | 9 | #include "../bootmanager.h" |
diff --git a/src/citra_qt/hotkeys.cpp b/src/citra_qt/hotkeys.cpp index 322c25c9e..5ed6cf0b1 100644 --- a/src/citra_qt/hotkeys.cpp +++ b/src/citra_qt/hotkeys.cpp | |||
| @@ -2,10 +2,13 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <map> | ||
| 6 | |||
| 5 | #include <QKeySequence> | 7 | #include <QKeySequence> |
| 6 | #include <QSettings> | 8 | #include <QSettings> |
| 9 | #include <QShortcut> | ||
| 10 | |||
| 7 | #include "hotkeys.h" | 11 | #include "hotkeys.h" |
| 8 | #include <map> | ||
| 9 | 12 | ||
| 10 | struct Hotkey | 13 | struct Hotkey |
| 11 | { | 14 | { |
diff --git a/src/citra_qt/hotkeys.h b/src/citra_qt/hotkeys.h index 75c7cc625..2317f8188 100644 --- a/src/citra_qt/hotkeys.h +++ b/src/citra_qt/hotkeys.h | |||
| @@ -2,12 +2,12 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <QShortcut> | ||
| 6 | #include <QDialog> | ||
| 7 | #include "ui_hotkeys.h" | 5 | #include "ui_hotkeys.h" |
| 8 | 6 | ||
| 7 | class QDialog; | ||
| 9 | class QKeySequence; | 8 | class QKeySequence; |
| 10 | class QSettings; | 9 | class QSettings; |
| 10 | class QShortcut; | ||
| 11 | 11 | ||
| 12 | /** | 12 | /** |
| 13 | * Register a hotkey. | 13 | * Register a hotkey. |
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index 8041816a0..d23bafafc 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp | |||
| @@ -10,18 +10,16 @@ | |||
| 10 | #include "qhexedit.h" | 10 | #include "qhexedit.h" |
| 11 | #include "main.h" | 11 | #include "main.h" |
| 12 | 12 | ||
| 13 | #include "common/string_util.h" | ||
| 13 | #include "common/logging/text_formatter.h" | 14 | #include "common/logging/text_formatter.h" |
| 14 | #include "common/logging/log.h" | 15 | #include "common/logging/log.h" |
| 15 | #include "common/logging/backend.h" | 16 | #include "common/logging/backend.h" |
| 16 | #include "common/logging/filter.h" | 17 | #include "common/logging/filter.h" |
| 17 | #include "common/make_unique.h" | 18 | #include "common/make_unique.h" |
| 18 | #include "common/platform.h" | 19 | #include "common/platform.h" |
| 20 | #include "common/scm_rev.h" | ||
| 19 | #include "common/scope_exit.h" | 21 | #include "common/scope_exit.h" |
| 20 | 22 | ||
| 21 | #if EMU_PLATFORM == PLATFORM_LINUX | ||
| 22 | #include <unistd.h> | ||
| 23 | #endif | ||
| 24 | |||
| 25 | #include "bootmanager.h" | 23 | #include "bootmanager.h" |
| 26 | #include "hotkeys.h" | 24 | #include "hotkeys.h" |
| 27 | 25 | ||