Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Remove INDENT-ON INDENT-OFF comments in src/video/uikit
Browse files Browse the repository at this point in the history
These comments are only useful for running indent which we are
probably not going to use in Objective-C context.
  • Loading branch information
keestux committed Sep 27, 2011
1 parent 7edbd34 commit 307afa9
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 8 deletions.
2 changes: 0 additions & 2 deletions src/video/uikit/SDL_uikitappdelegate.h
Expand Up @@ -22,14 +22,12 @@
#import <UIKit/UIKit.h>
#import "SDL_uikitopenglview.h"

/* *INDENT-OFF* */
@interface SDLUIKitDelegate:NSObject<UIApplicationDelegate> {
}

+(SDLUIKitDelegate *)sharedAppDelegate;
+(NSString *)getAppDelegateClassName;

@end
/* *INDENT-ON* */

/* vi: set ts=4 sw=4 expandtab: */
2 changes: 0 additions & 2 deletions src/video/uikit/SDL_uikitopenglview.h
Expand Up @@ -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
Expand Down Expand Up @@ -66,6 +65,5 @@
- (void)updateFrame;

@end
/* *INDENT-ON* */

/* vi: set ts=4 sw=4 expandtab: */
2 changes: 0 additions & 2 deletions src/video/uikit/SDL_uikitview.h
Expand Up @@ -31,7 +31,6 @@
#define MAX_SIMULTANEOUS_TOUCHES 5
#endif

/* *INDENT-OFF* */
#if SDL_IPHONE_KEYBOARD
@interface SDL_uikitview : UIView<UITextFieldDelegate> {
#else
Expand Down Expand Up @@ -65,6 +64,5 @@
#endif

@end
/* *INDENT-ON* */

/* vi: set ts=4 sw=4 expandtab: */
2 changes: 0 additions & 2 deletions src/video/uikit/keyinfotable.h
Expand Up @@ -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 },
Expand Down Expand Up @@ -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 */
Expand Down

0 comments on commit 307afa9

Please sign in to comment.