diff options
author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2009-08-10 18:08:06 +0000 |
---|---|---|
committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2009-08-10 18:08:06 +0000 |
commit | ad7dab615f668274bc35fca5375d1d2facf4f1b8 (patch) | |
tree | 9c6371b53053870efded4ebef7cc8bfbf2044fac | |
parent | 519adfbaae5933ec18d2e3cb77e690e36cd49916 (diff) | |
download | rockbox-ad7dab615f668274bc35fca5375d1d2facf4f1b8.tar.gz rockbox-ad7dab615f668274bc35fca5375d1d2facf4f1b8.zip |
Add missing multiple inclusion protection.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22236 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | rbutil/rbutilqt/base/bootloaderinstallfile.h | 5 | ||||
-rw-r--r-- | rbutil/rbutilqt/base/bootloaderinstallmi4.h | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/rbutil/rbutilqt/base/bootloaderinstallfile.h b/rbutil/rbutilqt/base/bootloaderinstallfile.h index f77ec7f20d..65e9467003 100644 --- a/rbutil/rbutilqt/base/bootloaderinstallfile.h +++ b/rbutil/rbutilqt/base/bootloaderinstallfile.h | |||
@@ -17,6 +17,9 @@ | |||
17 | * | 17 | * |
18 | ****************************************************************************/ | 18 | ****************************************************************************/ |
19 | 19 | ||
20 | #ifndef BOOTLOADERINSTALLFILE_H | ||
21 | #define BOOTLOADERINSTALLFILE_H | ||
22 | |||
20 | #include <QtCore> | 23 | #include <QtCore> |
21 | #include "progressloggerinterface.h" | 24 | #include "progressloggerinterface.h" |
22 | #include "bootloaderinstallbase.h" | 25 | #include "bootloaderinstallbase.h" |
@@ -42,3 +45,5 @@ class BootloaderInstallFile : public BootloaderInstallBase | |||
42 | private: | 45 | private: |
43 | }; | 46 | }; |
44 | 47 | ||
48 | #endif | ||
49 | |||
diff --git a/rbutil/rbutilqt/base/bootloaderinstallmi4.h b/rbutil/rbutilqt/base/bootloaderinstallmi4.h index 313f61ad12..f1eeb4e7bf 100644 --- a/rbutil/rbutilqt/base/bootloaderinstallmi4.h +++ b/rbutil/rbutilqt/base/bootloaderinstallmi4.h | |||
@@ -17,6 +17,9 @@ | |||
17 | * | 17 | * |
18 | ****************************************************************************/ | 18 | ****************************************************************************/ |
19 | 19 | ||
20 | #ifndef BOOTLOADERINSTALLMI4_H | ||
21 | #define BOOTLOADERINSTALLMI4_H | ||
22 | |||
20 | #include <QtCore> | 23 | #include <QtCore> |
21 | #include "progressloggerinterface.h" | 24 | #include "progressloggerinterface.h" |
22 | #include "bootloaderinstallbase.h" | 25 | #include "bootloaderinstallbase.h" |
@@ -42,3 +45,5 @@ class BootloaderInstallMi4 : public BootloaderInstallBase | |||
42 | private: | 45 | private: |
43 | }; | 46 | }; |
44 | 47 | ||
48 | #endif | ||
49 | |||