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

Commit

Permalink
Convert a few TABs into spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Kees Bakker committed Aug 18, 2011
1 parent 5e662bf commit 5e2fe8b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/video/uikit/SDL_uikitappdelegate.m
Expand Up @@ -130,7 +130,7 @@ - (void) applicationWillResignActive:(UIApplication*)application
if (!_this) {
return;
}
SDL_Window *window;
for (window = _this->windows; window != nil; window = window->next) {
SDL_SendWindowEvent(window, SDL_WINDOWEVENT_MINIMIZED, 0, 0);
Expand All @@ -146,10 +146,10 @@ - (void) applicationDidBecomeActive:(UIApplication*)application
if (!_this) {
return;
}
SDL_Window *window;
SDL_Window *window;
for (window = _this->windows; window != nil; window = window->next) {
SDL_SendWindowEvent(window, SDL_WINDOWEVENT_RESTORED, 0, 0);
SDL_SendWindowEvent(window, SDL_WINDOWEVENT_RESTORED, 0, 0);
}
}

Expand Down

0 comments on commit 5e2fe8b

Please sign in to comment.