]> granicus.if.org Git - handbrake/commitdiff
MacGui: Fix some compile time warnings.
authordynaflash <dynaflashtech@gmail.com>
Thu, 26 May 2011 14:00:20 +0000 (14:00 +0000)
committerdynaflash <dynaflashtech@gmail.com>
Thu, 26 May 2011 14:00:20 +0000 (14:00 +0000)
- patch by blindjimmy, thanks!
- as per https://reviews.handbrake.fr/r/99/

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

macosx/Controller.h
macosx/Controller.m
macosx/HBAudioController.m

index 5b7864e758ee4bf28055728a34879397171931e9..4b3b50fd1584f08b68acad216d6b9b2e63b4bc65 100644 (file)
@@ -292,7 +292,6 @@ BOOL                        fIsDragging;
                      returnCode: (int) returnCode contextInfo: (void *) contextInfo;
 
 - (IBAction) showPicturePanel: (id) sender;
-- (void) picturePanelFullScreen;
 - (void) picturePanelWindowed;
 - (IBAction) showPreviewWindow: (id) sender;
 - (void)pictureSettingsDidChange;
index d3720ae7fd7a754cab725e627e5c2b57117f51cb..d77c25161399a2920f0c5e82785e7c906f78ff75 100644 (file)
@@ -5089,11 +5089,6 @@ the user is using "Custom" settings by determining the sender*/
        [fPictureController showPictureWindow:sender];
 }
 
-- (void) picturePanelFullScreen
-{
-       [fPictureController setToFullScreenMode];
-}
-
 - (void) picturePanelWindowed
 {
        [fPictureController setToWindowedMode];
index 074533b184ff81f7bada639535795cb4ee05e6c4..c50227ff53a1254ca8b79476db0427f848e81846 100644 (file)
@@ -444,7 +444,7 @@ NSString *HBMixdownChangedNotification = @"HBMixdownChangedNotification";
        //      If this is not the last track in the array we need to remove it.  We then need to see if a new
        //      one needs to be added (in the case when we were at maximum count and this switching makes it
        //      so we are no longer at maximum.
-       unsigned int index = [audioArray indexOfObject: newNoneTrack];
+       NSUInteger index = [audioArray indexOfObject: newNoneTrack];
 
        if (NSNotFound != index && index < [self countOfAudioArray] - 1) {
                [self removeObjectFromAudioArrayAtIndex: index];