summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorLeo Lam <leolino.lam@gmail.com>2017-07-27 15:00:52 +0800
committerGitHub <noreply@github.com>2017-07-27 15:00:52 +0800
commitbf7c0c80244375a9eafdef8aeee91fac6673a1b2 (patch)
treeb2311f32f55bf4084cfcc86efcd1e1c3713bc73c /Source/Core
parenta11bde7d167c65bb693e5138e47dd4586683c092 (diff)
parentfb42c3eddcd0a680a892f17a50438cfb9c2e2ff1 (diff)
Merge pull request #5831 from lioncash/include
DolphinQt2: Add missing include guards
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinQt2/Config/Mapping/GCKeyboardEmu.h2
-rw-r--r--Source/Core/DolphinQt2/Config/Mapping/GCPadEmu.h2
-rw-r--r--Source/Core/DolphinQt2/Config/Mapping/GCPadWiiU.h2
-rw-r--r--Source/Core/DolphinQt2/Config/Mapping/WiimoteEmuExtension.h2
-rw-r--r--Source/Core/DolphinQt2/Config/Mapping/WiimoteEmuGeneral.h2
-rw-r--r--Source/Core/DolphinQt2/Config/Mapping/WiimoteEmuMotionControl.h2
-rw-r--r--Source/Core/DolphinQt2/GameList/TableProxyModel.h2
7 files changed, 14 insertions, 0 deletions
diff --git a/Source/Core/DolphinQt2/Config/Mapping/GCKeyboardEmu.h b/Source/Core/DolphinQt2/Config/Mapping/GCKeyboardEmu.h
index c322c6f20d..2fd27d0a83 100644
--- a/Source/Core/DolphinQt2/Config/Mapping/GCKeyboardEmu.h
+++ b/Source/Core/DolphinQt2/Config/Mapping/GCKeyboardEmu.h
@@ -2,6 +2,8 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
+#pragma once
+
#include "DolphinQt2/Config/Mapping/MappingWidget.h"
class QCheckBox;
diff --git a/Source/Core/DolphinQt2/Config/Mapping/GCPadEmu.h b/Source/Core/DolphinQt2/Config/Mapping/GCPadEmu.h
index 7f0f628275..05d158caf1 100644
--- a/Source/Core/DolphinQt2/Config/Mapping/GCPadEmu.h
+++ b/Source/Core/DolphinQt2/Config/Mapping/GCPadEmu.h
@@ -2,6 +2,8 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
+#pragma once
+
#include "DolphinQt2/Config/Mapping/MappingWidget.h"
class QCheckBox;
diff --git a/Source/Core/DolphinQt2/Config/Mapping/GCPadWiiU.h b/Source/Core/DolphinQt2/Config/Mapping/GCPadWiiU.h
index 730870824a..5c3cbbe9ac 100644
--- a/Source/Core/DolphinQt2/Config/Mapping/GCPadWiiU.h
+++ b/Source/Core/DolphinQt2/Config/Mapping/GCPadWiiU.h
@@ -2,6 +2,8 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
+#pragma once
+
#include "DolphinQt2/Config/Mapping/MappingWidget.h"
class QCheckBox;
diff --git a/Source/Core/DolphinQt2/Config/Mapping/WiimoteEmuExtension.h b/Source/Core/DolphinQt2/Config/Mapping/WiimoteEmuExtension.h
index d908c9791b..f98610af24 100644
--- a/Source/Core/DolphinQt2/Config/Mapping/WiimoteEmuExtension.h
+++ b/Source/Core/DolphinQt2/Config/Mapping/WiimoteEmuExtension.h
@@ -2,6 +2,8 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
+#pragma once
+
#include "DolphinQt2/Config/Mapping/MappingWidget.h"
class QGroupBox;
diff --git a/Source/Core/DolphinQt2/Config/Mapping/WiimoteEmuGeneral.h b/Source/Core/DolphinQt2/Config/Mapping/WiimoteEmuGeneral.h
index 0bd92954b6..cc91cc21dc 100644
--- a/Source/Core/DolphinQt2/Config/Mapping/WiimoteEmuGeneral.h
+++ b/Source/Core/DolphinQt2/Config/Mapping/WiimoteEmuGeneral.h
@@ -2,6 +2,8 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
+#pragma once
+
#include "DolphinQt2/Config/Mapping/MappingWidget.h"
class QComboBox;
diff --git a/Source/Core/DolphinQt2/Config/Mapping/WiimoteEmuMotionControl.h b/Source/Core/DolphinQt2/Config/Mapping/WiimoteEmuMotionControl.h
index 767858a1ab..e85b9208cf 100644
--- a/Source/Core/DolphinQt2/Config/Mapping/WiimoteEmuMotionControl.h
+++ b/Source/Core/DolphinQt2/Config/Mapping/WiimoteEmuMotionControl.h
@@ -2,6 +2,8 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
+#pragma once
+
#include "DolphinQt2/Config/Mapping/MappingWidget.h"
class QCheckBox;
diff --git a/Source/Core/DolphinQt2/GameList/TableProxyModel.h b/Source/Core/DolphinQt2/GameList/TableProxyModel.h
index ec7c1f1d1c..72a8d1c0ba 100644
--- a/Source/Core/DolphinQt2/GameList/TableProxyModel.h
+++ b/Source/Core/DolphinQt2/GameList/TableProxyModel.h
@@ -2,6 +2,8 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
+#pragma once
+
#include <QSortFilterProxyModel>
// This subclass of QSortFilterProxyModel allows the data to be filtered by the view.