Skip to content

Commit

Permalink
IOS7: Use standard include guard names.
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Schickel committed Jan 7, 2016
1 parent bcaa725 commit 17a5744
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 8 deletions.
5 changes: 5 additions & 0 deletions backends/platform/ios7/iOS7AppDelegate.h
Expand Up @@ -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;
Expand All @@ -31,3 +34,5 @@
+ (iPhoneView *)iPhoneView;

@end

#endif
5 changes: 5 additions & 0 deletions backends/platform/ios7/iOS7ScummVMViewController.h
Expand Up @@ -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
4 changes: 2 additions & 2 deletions backends/platform/ios7/ios7_common.h
Expand Up @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions backends/platform/ios7/ios7_keyboard.h
Expand Up @@ -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>
Expand Down
4 changes: 2 additions & 2 deletions backends/platform/ios7/ios7_osys_main.h
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions backends/platform/ios7/ios7_video.h
Expand Up @@ -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>
Expand Down

0 comments on commit 17a5744

Please sign in to comment.