From 307afa99a2ff874f259fd792873dcb5c48b6f950 Mon Sep 17 00:00:00 2001 From: Kees Bakker Date: Tue, 27 Sep 2011 21:07:09 +0200 Subject: [PATCH] Remove INDENT-ON INDENT-OFF comments in src/video/uikit These comments are only useful for running indent which we are probably not going to use in Objective-C context. --- src/video/uikit/SDL_uikitappdelegate.h | 2 -- src/video/uikit/SDL_uikitopenglview.h | 2 -- src/video/uikit/SDL_uikitview.h | 2 -- src/video/uikit/keyinfotable.h | 2 -- 4 files changed, 8 deletions(-) diff --git a/src/video/uikit/SDL_uikitappdelegate.h b/src/video/uikit/SDL_uikitappdelegate.h index 2e47167a4..63cc98114 100644 --- a/src/video/uikit/SDL_uikitappdelegate.h +++ b/src/video/uikit/SDL_uikitappdelegate.h @@ -22,7 +22,6 @@ #import #import "SDL_uikitopenglview.h" -/* *INDENT-OFF* */ @interface SDLUIKitDelegate:NSObject { } @@ -30,6 +29,5 @@ +(NSString *)getAppDelegateClassName; @end -/* *INDENT-ON* */ /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/video/uikit/SDL_uikitopenglview.h b/src/video/uikit/SDL_uikitopenglview.h index 41c0d3fc6..ed288be89 100644 --- a/src/video/uikit/SDL_uikitopenglview.h +++ b/src/video/uikit/SDL_uikitopenglview.h @@ -29,7 +29,6 @@ The view content is basically an EAGL surface you render your OpenGL scene into. Note that setting the view non-opaque will only work if the EAGL surface has an alpha channel. */ -/* *INDENT-OFF* */ @interface SDL_uikitopenglview : SDL_uikitview { @private @@ -66,6 +65,5 @@ - (void)updateFrame; @end -/* *INDENT-ON* */ /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/video/uikit/SDL_uikitview.h b/src/video/uikit/SDL_uikitview.h index 895fb6c42..89de84fe3 100644 --- a/src/video/uikit/SDL_uikitview.h +++ b/src/video/uikit/SDL_uikitview.h @@ -31,7 +31,6 @@ #define MAX_SIMULTANEOUS_TOUCHES 5 #endif -/* *INDENT-OFF* */ #if SDL_IPHONE_KEYBOARD @interface SDL_uikitview : UIView { #else @@ -65,6 +64,5 @@ #endif @end -/* *INDENT-ON* */ /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/video/uikit/keyinfotable.h b/src/video/uikit/keyinfotable.h index d9d47f8c5..3c011521b 100644 --- a/src/video/uikit/keyinfotable.h +++ b/src/video/uikit/keyinfotable.h @@ -39,7 +39,6 @@ typedef struct /* So far only ASCII characters here */ static UIKitKeyInfo unicharToUIKeyInfoTable[] = { -/* *INDENT-OFF* */ /* 0 */ { SDL_SCANCODE_UNKNOWN, 0 }, /* 1 */ { SDL_SCANCODE_UNKNOWN, 0 }, /* 2 */ { SDL_SCANCODE_UNKNOWN, 0 }, @@ -168,7 +167,6 @@ static UIKitKeyInfo unicharToUIKeyInfoTable[] = { /* 125 */{ SDL_SCANCODE_RIGHTBRACKET, KMOD_SHIFT }, /* plus shift modifier '}' */ /* 126 */{ SDL_SCANCODE_GRAVE, KMOD_SHIFT }, /* plus shift modifier '~' */ /* 127 */{ SDL_SCANCODE_DELETE, KMOD_SHIFT } -/* *INDENT-ON* */ }; #endif /* UIKitKeyInfo */