aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/ios7
diff options
context:
space:
mode:
authorJohannes Schickel2016-01-07 12:30:19 +0100
committerJohannes Schickel2016-01-07 12:44:48 +0100
commit17a57443aea26bf51cc7992049f2503e6cecb672 (patch)
tree585f531e7d96285bd97048e5e3754dcefee1796c /backends/platform/ios7
parentbcaa725184e8d7df22f6dc0c4bfff953fb0504ef (diff)
downloadscummvm-rg350-17a57443aea26bf51cc7992049f2503e6cecb672.tar.gz
scummvm-rg350-17a57443aea26bf51cc7992049f2503e6cecb672.tar.bz2
scummvm-rg350-17a57443aea26bf51cc7992049f2503e6cecb672.zip
IOS7: Use standard include guard names.
Diffstat (limited to 'backends/platform/ios7')
-rw-r--r--backends/platform/ios7/iOS7AppDelegate.h5
-rw-r--r--backends/platform/ios7/iOS7ScummVMViewController.h5
-rw-r--r--backends/platform/ios7/ios7_common.h4
-rw-r--r--backends/platform/ios7/ios7_keyboard.h4
-rw-r--r--backends/platform/ios7/ios7_osys_main.h4
-rw-r--r--backends/platform/ios7/ios7_video.h4
6 files changed, 18 insertions, 8 deletions
diff --git a/backends/platform/ios7/iOS7AppDelegate.h b/backends/platform/ios7/iOS7AppDelegate.h
index a34ad9bb18..224989880d 100644
--- a/backends/platform/ios7/iOS7AppDelegate.h
+++ b/backends/platform/ios7/iOS7AppDelegate.h
@@ -20,6 +20,9 @@
*
*/
+#ifndef BACKENDS_PLATFORM_IOS7_IOS7_APP_DELEGATE_H
+#define BACKENDS_PLATFORM_IOS7_IOS7_APP_DELEGATE_H
+
#import <UIKit/UIKit.h>
@class iPhoneView;
@@ -31,3 +34,5 @@
+ (iPhoneView *)iPhoneView;
@end
+
+#endif
diff --git a/backends/platform/ios7/iOS7ScummVMViewController.h b/backends/platform/ios7/iOS7ScummVMViewController.h
index 0322bc6f7f..54eac142a6 100644
--- a/backends/platform/ios7/iOS7ScummVMViewController.h
+++ b/backends/platform/ios7/iOS7ScummVMViewController.h
@@ -20,9 +20,14 @@
*
*/
+#ifndef BACKENDS_PLATFORM_IOS7_IOS7_SCUMMVM_VIEW_CONTROLLER_H
+#define BACKENDS_PLATFORM_IOS7_IOS7_SCUMMVM_VIEW_CONTROLLER_H
+
#import <UIKit/UIKit.h>
@interface iOS7ScummVMViewController : UIViewController
@end
+
+#endif
diff --git a/backends/platform/ios7/ios7_common.h b/backends/platform/ios7/ios7_common.h
index a32a59a541..12740d4ae9 100644
--- a/backends/platform/ios7/ios7_common.h
+++ b/backends/platform/ios7/ios7_common.h
@@ -20,8 +20,8 @@
*
*/
-#ifndef BACKENDS_PLATFORM_IPHONE_IPHONE_COMMON_H
-#define BACKENDS_PLATFORM_IPHONE_IPHONE_COMMON_H
+#ifndef BACKENDS_PLATFORM_IOS7_IOS7_COMMON_H
+#define BACKENDS_PLATFORM_IOS7_IOS7_COMMON_H
#include "graphics/surface.h"
diff --git a/backends/platform/ios7/ios7_keyboard.h b/backends/platform/ios7/ios7_keyboard.h
index ddd8f436e5..1f917cc8c5 100644
--- a/backends/platform/ios7/ios7_keyboard.h
+++ b/backends/platform/ios7/ios7_keyboard.h
@@ -20,8 +20,8 @@
*
*/
-#ifndef BACKENDS_PLATFORM_IPHONE_IPHONE_KEYBOARD_H
-#define BACKENDS_PLATFORM_IPHONE_IPHONE_KEYBOARD_H
+#ifndef BACKENDS_PLATFORM_IOS7_IOS7_KEYBOARD_H
+#define BACKENDS_PLATFORM_IOS7_IOS7_KEYBOARD_H
#include <UIKit/UIKit.h>
#include <UIKit/UITextView.h>
diff --git a/backends/platform/ios7/ios7_osys_main.h b/backends/platform/ios7/ios7_osys_main.h
index eadb49e5ac..4ad6528854 100644
--- a/backends/platform/ios7/ios7_osys_main.h
+++ b/backends/platform/ios7/ios7_osys_main.h
@@ -20,8 +20,8 @@
*
*/
-#ifndef BACKENDS_PLATFORM_IPHONE_OSYS_MAIN_H
-#define BACKENDS_PLATFORM_IPHONE_OSYS_MAIN_H
+#ifndef BACKENDS_PLATFORM_IOS7_IOS7_OSYS_MAIN_H
+#define BACKENDS_PLATFORM_IOS7_IOS7_OSYS_MAIN_H
#include "graphics/surface.h"
#include "ios7_common.h"
diff --git a/backends/platform/ios7/ios7_video.h b/backends/platform/ios7/ios7_video.h
index ab261a977b..b530bad5a2 100644
--- a/backends/platform/ios7/ios7_video.h
+++ b/backends/platform/ios7/ios7_video.h
@@ -20,8 +20,8 @@
*
*/
-#ifndef BACKENDS_PLATFORM_IPHONE_IPHONE_VIDEO_H
-#define BACKENDS_PLATFORM_IPHONE_IPHONE_VIDEO_H
+#ifndef BACKENDS_PLATFORM_IOS7_IOS7_VIDEO_H
+#define BACKENDS_PLATFORM_IOS7_IOS7_VIDEO_H
#include <UIKit/UIKit.h>
#include <Foundation/Foundation.h>