diff src/video/cocoa/SDL_cocoaclipboard.m @ 4504:9faebccfefb3

Amazingly the Windows code is almost identical to the Mac OS X code. :)
author Sam Lantinga <slouken@libsdl.org>
date Thu, 08 Jul 2010 23:07:34 -0700
parents 524dfefd554c
children 514f811a4887
line wrap: on
line diff
--- a/src/video/cocoa/SDL_cocoaclipboard.m	Thu Jul 08 22:54:03 2010 -0700
+++ b/src/video/cocoa/SDL_cocoaclipboard.m	Thu Jul 08 23:07:34 2010 -0700
@@ -45,7 +45,7 @@
 {
     SDL_VideoData *data = (SDL_VideoData *) _this->driverdata;
     NSAutoreleasePool *pool;
-	NSPasteboard *pasteboard;
+    NSPasteboard *pasteboard;
     NSString *format = GetTextFormat(_this);
 
     pool = [[NSAutoreleasePool alloc] init];
@@ -63,7 +63,7 @@
 Cocoa_GetClipboardText(_THIS)
 {
     NSAutoreleasePool *pool;
-	NSPasteboard *pasteboard;
+    NSPasteboard *pasteboard;
     NSString *format = GetTextFormat(_this);
     NSString *available;
     char *text;
@@ -96,7 +96,7 @@
 Cocoa_HasClipboardText(_THIS)
 {
     NSAutoreleasePool *pool;
-	NSPasteboard *pasteboard;
+    NSPasteboard *pasteboard;
     NSString *format = GetTextFormat(_this);
     NSString *available;
     SDL_bool result;
@@ -120,7 +120,7 @@
 Cocoa_CheckClipboardUpdate(struct SDL_VideoData * data)
 {
     NSAutoreleasePool *pool;
-	NSPasteboard *pasteboard;
+    NSPasteboard *pasteboard;
     NSInteger count;
 
     pool = [[NSAutoreleasePool alloc] init];