]> granicus.if.org Git - handbrake/commitdiff
MacGui: Objective-C/cosmetics.
authorRodeo <tdskywalker@gmail.com>
Sun, 16 Sep 2012 22:38:19 +0000 (22:38 +0000)
committerRodeo <tdskywalker@gmail.com>
Sun, 16 Sep 2012 22:38:19 +0000 (22:38 +0000)
Apologies if I break anything.

git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4967 b64f7644-9d1e-0410-96f1-a4d463321fa5

macosx/Controller.m

index e147484c0af7662e08e0a1f24d4cd1c526dbc674..c9bb931b518a3b9f275d1be33786cf6591bf95b2 100644 (file)
@@ -99,18 +99,18 @@ static NSString *        ChooseSourceIdentifier             = @"Choose Source It
     [self writeToActivityLog: "%s", [versionStringFull UTF8String]];
     
     /* Load the dockTile and instiante initial text fields */
-    self->dockTile = [[NSApplication sharedApplication] dockTile];
+    dockTile = [[NSApplication sharedApplication] dockTile];
     NSImageView *iv = [[NSImageView alloc] init];
     [iv setImage:[[NSApplication sharedApplication] applicationIconImage]];
-    [self->dockTile setContentView:iv];
+    [dockTile setContentView:iv];
     
     /* We can move the specific values out from here by subclassing NSDockTile and package everything in here */
     /* If colors are to be chosen once and for all, we can also remove the instantiation with numerical values */
-    percentField = [[DockTextField alloc] initWithFrame:NSMakeRect(0.0f, 32.0f, self->dockTile.size.width, 30.0f)];
+    percentField = [[DockTextField alloc] initWithFrame:NSMakeRect(0.0f, 32.0f, [dockTile size].width, 30.0f)];
     [percentField changeGradientColors:[NSColor colorWithSRGBRed:0.4f green:0.6f blue:0.4f alpha:1.0f] withEndColor:[NSColor colorWithSRGBRed:0.2f green:0.4f blue:0.2f alpha:1.0f]];
     [iv addSubview:percentField];
     
-    timeField = [[DockTextField alloc] initWithFrame:NSMakeRect(0.0f, 0.0f, self->dockTile.size.width, 30.0f)];
+    timeField = [[DockTextField alloc] initWithFrame:NSMakeRect(0.0f, 0.0f, [dockTile size].width, 30.0f)];
     [timeField changeGradientColors:[NSColor colorWithSRGBRed:0.6f green:0.4f blue:0.4f alpha:1.0f] withEndColor:[NSColor colorWithSRGBRed:0.4f green:0.2f blue:0.2f alpha:1.0f]];
     [iv addSubview:timeField];
     
@@ -677,7 +677,7 @@ static NSString *        ChooseSourceIdentifier             = @"Choose Source It
         [timeField setHidden:NO];
     }
     
-    [self->dockTile display];
+    [dockTile display];
 }
 
 - (void) updateUI: (NSTimer *) timer