diff options
| author | Leo Lam <leolino.lam@gmail.com> | 2017-07-27 15:00:52 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-27 15:00:52 +0800 |
| commit | bf7c0c80244375a9eafdef8aeee91fac6673a1b2 (patch) | |
| tree | b2311f32f55bf4084cfcc86efcd1e1c3713bc73c /Source/Core | |
| parent | a11bde7d167c65bb693e5138e47dd4586683c092 (diff) | |
| parent | fb42c3eddcd0a680a892f17a50438cfb9c2e2ff1 (diff) | |
Merge pull request #5831 from lioncash/include
DolphinQt2: Add missing include guards
Diffstat (limited to 'Source/Core')
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. |
