diff options
Diffstat (limited to 'macosx/Controller.mm')
-rw-r--r-- | macosx/Controller.mm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm index 8f6e94d2e..eb53a9dd5 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -1,4 +1,4 @@ -/* $Id: Controller.mm,v 1.30 2004/03/12 14:22:19 titer Exp $ +/* $Id: Controller.mm,v 1.31 2004/04/21 21:21:17 titer Exp $ This file is part of the HandBrake source code. Homepage: <http://handbrake.m0k.org/>. @@ -850,8 +850,8 @@ static void _ScanDone( void * data, HBList * titleList ) title = (HBTitle*) HBListItemAt( fTitleList, i ); [[fRipTitlePopUp menu] addItemWithTitle: [NSString stringWithFormat: @"%d - %02dh%02dm%02ds", - title->index, title->length / 3600, ( title->length % 3600 ) - / 60, title->length % 60] action: nil keyEquivalent: @""]; + title->title, title->hours, title->minutes, + title->seconds] action: nil keyEquivalent: @""]; } [self TitlePopUpChanged: self]; } |