From fb42c3eddcd0a680a892f17a50438cfb9c2e2ff1 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 26 Jul 2017 16:31:58 -0400 Subject: [PATCH] DolphinQt2: Add missing include guards --- Source/Core/DolphinQt2/Config/Mapping/GCKeyboardEmu.h | 2 ++ Source/Core/DolphinQt2/Config/Mapping/GCPadEmu.h | 2 ++ Source/Core/DolphinQt2/Config/Mapping/GCPadWiiU.h | 2 ++ Source/Core/DolphinQt2/Config/Mapping/WiimoteEmuExtension.h | 2 ++ Source/Core/DolphinQt2/Config/Mapping/WiimoteEmuGeneral.h | 2 ++ Source/Core/DolphinQt2/Config/Mapping/WiimoteEmuMotionControl.h | 2 ++ Source/Core/DolphinQt2/GameList/TableProxyModel.h | 2 ++ 7 files changed, 14 insertions(+) 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 // This subclass of QSortFilterProxyModel allows the data to be filtered by the view.