CitraQt: Cleanup includes.

This commit is contained in:
Emmanuel Gil Peyrot 2015-06-21 14:58:59 +01:00
parent 22ae87530b
commit 45c4781544
20 changed files with 47 additions and 18 deletions

View file

@ -11,6 +11,10 @@
#include "bootmanager.h"
#include "main.h"
#include "common/string_util.h"
#include "common/scm_rev.h"
#include "common/key_map.h"
#include "core/core.h"
#include "core/settings.h"
#include "core/system.h"

View file

@ -2,11 +2,11 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <QSettings>
#include <QString>
#include <QStringList>
#include "core/settings.h"
#include "core/core.h"
#include "common/file_util.h"
#include "config.h"

View file

@ -4,9 +4,9 @@
#pragma once
#include <QSettings>
#include <string>
#include "common/common_types.h"
class QSettings;
class Config {
QSettings* qt_config;

View file

@ -2,6 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <QShortcut>
#include "disassembler.h"
#include "../bootmanager.h"

View file

@ -2,10 +2,13 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <map>
#include <QKeySequence>
#include <QSettings>
#include <QShortcut>
#include "hotkeys.h"
#include <map>
struct Hotkey
{

View file

@ -2,12 +2,12 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <QShortcut>
#include <QDialog>
#include "ui_hotkeys.h"
class QDialog;
class QKeySequence;
class QSettings;
class QShortcut;
/**
* Register a hotkey.

View file

@ -10,12 +10,14 @@
#include "qhexedit.h"
#include "main.h"
#include "common/string_util.h"
#include "common/logging/text_formatter.h"
#include "common/logging/log.h"
#include "common/logging/backend.h"
#include "common/logging/filter.h"
#include "common/make_unique.h"
#include "common/platform.h"
#include "common/scm_rev.h"
#include "common/scope_exit.h"
#include "bootmanager.h"