diff options
author | dynaflash <[email protected]> | 2010-11-30 18:21:33 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2010-11-30 18:21:33 +0000 |
commit | 057feb69bc3c615fefae4aad5cf8adb07df6a7b2 (patch) | |
tree | b4e97d866d0ed261871624364b632991df1b276e /macosx/Controller.m | |
parent | 52146d5dab53232965a8599993bd538c769b6a11 (diff) |
MacGui: fix character encodings in the log file as well as the title popup string in the main menu dialogue.
- Patch by axfree. Thanks!
- Changes are discussed here: http://forum.handbrake.fr/viewtopic.php?f=4&t=18677
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3690 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.m')
-rw-r--r-- | macosx/Controller.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/Controller.m b/macosx/Controller.m index 898bcfa4f..c9cd4bafe 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -1883,8 +1883,8 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It } [fSrcTitlePopUp addItemWithTitle: [NSString - stringWithFormat: @"%s %d - %02dh%02dm%02ds", - title->name,title->index, title->hours, title->minutes, + stringWithFormat: @"%@ %d - %02dh%02dm%02ds", + currentSource, title->index, title->hours, title->minutes, title->seconds]]; } |