summaryrefslogtreecommitdiffstats
path: root/macosx/ExpressController.m
diff options
context:
space:
mode:
authorjohnallen <[email protected]>2007-01-04 00:40:45 +0000
committerjohnallen <[email protected]>2007-01-04 00:40:45 +0000
commitb30e6cee64f1005cd31f5deb00ca5120c9852d23 (patch)
tree07804ef41800eacf59711f42ee56aaf9bf1f8684 /macosx/ExpressController.m
parentae5459b723b61fb8835beb3d096b3103cba448af (diff)
added title # to output filename
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@88 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/ExpressController.m')
-rw-r--r--macosx/ExpressController.m9
1 files changed, 3 insertions, 6 deletions
diff --git a/macosx/ExpressController.m b/macosx/ExpressController.m
index 406abe3f9..ec2ce5d7d 100644
--- a/macosx/ExpressController.m
+++ b/macosx/ExpressController.m
@@ -298,12 +298,9 @@
}
}
-// job->file = strdup( [[NSString stringWithFormat:
-// @"%@/%s - Title %d - %@.m4v", fConvertFolderString,
-// title->name, title->index, [fConvertFormatPopUp
-// titleOfSelectedItem]] UTF8String] );
- job->file = strdup( [[NSString stringWithFormat:
- @"%@/%s.m4v", fConvertFolderString, title->name] UTF8String]);
+ job->file = strdup( [[NSString stringWithFormat:
+ @"%@/%s - Title %d.m4v", fConvertFolderString,
+ title->name, title->index] UTF8String] );
hb_add( fHandle, job );
}