- 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
returnCode: (int) returnCode contextInfo: (void *) contextInfo;
- (IBAction) showPicturePanel: (id) sender;
-- (void) picturePanelFullScreen;
- (void) picturePanelWindowed;
- (IBAction) showPreviewWindow: (id) sender;
- (void)pictureSettingsDidChange;
[fPictureController showPictureWindow:sender];
}
-- (void) picturePanelFullScreen
-{
- [fPictureController setToFullScreenMode];
-}
-
- (void) picturePanelWindowed
{
[fPictureController setToWindowedMode];
// 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];