diff options
author | handbrake <[email protected]> | 2006-01-14 13:34:42 +0000 |
---|---|---|
committer | handbrake <[email protected]> | 2006-01-14 13:34:42 +0000 |
commit | d35a2a23fe450c88925128b9db7c63a5f1ed395d (patch) | |
tree | ed7f6b0e4b1f118b0209c606448b693b822020fb /macosx/Controller.mm | |
parent | 60925e41e540e9c79b522f4864296bc425fcc9e4 (diff) |
HandBrake 0.6.2
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@15 b64f7644-9d1e-0410-96f1-a4d463321fa5
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]; } |