浏览代码

Examples: remove trailing spaces and tabs

Jean-Baptiste Kempf 12 年之前
父节点
当前提交
f4e3452685
共有 3 个文件被更改,包括 28 次插入28 次删除
  1. 4 4
      Examples/iPodConverter/Controller.m
  2. 2 2
      Examples/iPodConverter/GradientBackgroundView.m
  3. 22 22
      Examples/test/Controller.m

+ 4 - 4
Examples/iPodConverter/Controller.m

@@ -23,7 +23,7 @@
 - (id)transformedValue:(id)value
 {
     if( !value ) return nil;
- 
+
     if(![value respondsToSelector: @selector(floatValue)])
     {
         [NSException raise: NSInternalInconsistencyException
@@ -31,14 +31,14 @@
         [value class]];
         return nil;
     }
- 
+
     return [NSNumber numberWithFloat: [value floatValue]*10000.];
 }
 
 - (id)reverseTransformedValue:(id)value
 {
     if( !value ) return nil;
- 
+
     if(![value respondsToSelector: @selector(floatValue)])
     {
         [NSException raise: NSInternalInconsistencyException
@@ -46,7 +46,7 @@
         [value class]];
         return nil;
     }
- 
+
     return [NSNumber numberWithFloat: [value floatValue]/10000.];
 }
 @end

+ 2 - 2
Examples/iPodConverter/GradientBackgroundView.m

@@ -24,10 +24,10 @@
 }
 - (void)drawRect:(NSRect)rect
 {
-    
+
     NSColor * topGradient = [NSColor colorWithCalibratedWhite:.12f alpha:1.0];
     NSColor * bottomGradient   = [NSColor colorWithCalibratedWhite:0.55f alpha:0.9];
-	NSGradient * gradient = [[NSGradient alloc] initWithColorsAndLocations:bottomGradient, 0.f, bottomGradient, 0.1f, topGradient, 1.f, nil];
+    NSGradient * gradient = [[NSGradient alloc] initWithColorsAndLocations:bottomGradient, 0.f, bottomGradient, 0.1f, topGradient, 1.f, nil];
     [gradient drawInRect:self.bounds angle:90.0];
     [super drawRect:rect];
 }

+ 22 - 22
Examples/test/Controller.m

@@ -16,15 +16,15 @@ static void *sleepForMe(void)
     // Allocate a VLCVideoView instance and tell it what area to occupy.
     NSRect rect = NSMakeRect(0, 0, 0, 0);
     rect.size = [videoHolderView frame].size;
-    
+
     videoView = [[VLCVideoView alloc] initWithFrame:rect];
     [videoHolderView addSubview:videoView];
     [videoView setAutoresizingMask: NSViewHeightSizable|NSViewWidthSizable];
     videoView.fillScreen = YES;
-    
+
     playlist = [[VLCMediaList alloc] init];
     [playlist addObserver:self forKeyPath:@"media" options:NSKeyValueObservingOptionNew context:nil];
-    
+
     player = [[VLCMediaPlayer alloc] initWithVideoView:videoView];
     mediaIndex = -1;
 
@@ -39,7 +39,7 @@ static void *sleepForMe(void)
 - (void)applicationWillTerminate:(NSNotification *)aNotification
 {
     [playlist removeObserver:self forKeyPath:@"media"];
-    
+
     [player pause];
     [player setMedia:nil];
     [player release];
@@ -51,22 +51,22 @@ static void *sleepForMe(void)
 {
     if ([playlistOutline selectedRow] != mediaIndex)
     {
-		[self setMediaIndex:[playlistOutline selectedRow]];
-		if (![player isPlaying])
-			[player play];
+        [self setMediaIndex:[playlistOutline selectedRow]];
+        if (![player isPlaying])
+            [player play];
     }
 }
 
 - (void)setMediaIndex:(int)value
 {
     if ([playlist count] <= 0)
-		return;
-    
+        return;
+
     if (value < 0)
-		value = 0;
+        value = 0;
     if (value > [playlist count] - 1)
-		value = [playlist count] - 1;
-    
+        value = [playlist count] - 1;
+
     mediaIndex = value;
     [player setMedia:[playlist mediaAtIndex:mediaIndex]];
 }
@@ -76,8 +76,8 @@ static void *sleepForMe(void)
     [self setMediaIndex:mediaIndex+1];
     if (![player isPlaying])
     {
-		NSLog(@"%@ length = %@", [playlist mediaAtIndex:mediaIndex], [[playlist mediaAtIndex:mediaIndex] lengthWaitUntilDate:[NSDate dateWithTimeIntervalSinceNow:60]]);
-		[player play];
+        NSLog(@"%@ length = %@", [playlist mediaAtIndex:mediaIndex], [[playlist mediaAtIndex:mediaIndex] lengthWaitUntilDate:[NSDate dateWithTimeIntervalSinceNow:60]]);
+        [player play];
     }
 }
 
@@ -101,30 +101,30 @@ static void *sleepForMe(void)
 }
 
 - (id)tableView:(NSTableView *)tableView objectValueForTableColumn:(NSTableColumn *)tableColumn
-			row:(int)row
+            row:(int)row
 {
     return [(VLCMedia *)[playlist mediaAtIndex:row].metaDictionary valueForKey:VLCMetaInformationTitle];
 }
 
-- (NSDragOperation)tableView:(NSTableView*)tv validateDrop:(id <NSDraggingInfo>)info 
-				 proposedRow:(int)row proposedDropOperation:(NSTableViewDropOperation)op
+- (NSDragOperation)tableView:(NSTableView*)tv validateDrop:(id <NSDraggingInfo>)info
+                 proposedRow:(int)row proposedDropOperation:(NSTableViewDropOperation)op
 {
     return NSDragOperationEvery; /* This is for now */
 }
 
 - (BOOL)tableView:(NSTableView *)aTableView acceptDrop:(id <NSDraggingInfo>)info
-			  row:(int)row dropOperation:(NSTableViewDropOperation)operation
+              row:(int)row dropOperation:(NSTableViewDropOperation)operation
 {
     int i;
     NSArray *droppedItems = [[info draggingPasteboard] propertyListForType:NSFilenamesPboardType];
-    
+
     for (i = 0; i < [droppedItems count]; i++)
     {
         NSString * filename = [droppedItems objectAtIndex:i];
-		VLCMedia * media = [VLCMedia mediaWithURL:[NSURL fileURLWithPath:filename]];
-		[playlist addMedia:media];
+        VLCMedia * media = [VLCMedia mediaWithURL:[NSURL fileURLWithPath:filename]];
+        [playlist addMedia:media];
     }
     return YES;
-}    
+}
 
 @end