summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordynaflash <[email protected]>2007-11-09 16:15:12 +0000
committerdynaflash <[email protected]>2007-11-09 16:15:12 +0000
commit61f77b9e58ed651b61417eb97003186763ae5f67 (patch)
tree7db11bd190de9bbf53172ae484b612e2abc74cc9
parent6040af9fa6de9988ad8daa57c3e28bc72323fb0a (diff)
MacGui: change -PrepareJob to -prepareJob to match cocoa coding conventions
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1048 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--macosx/Controller.mm6
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm
index 408e75162..7b7e74c5f 100644
--- a/macosx/Controller.mm
+++ b/macosx/Controller.mm
@@ -1252,7 +1252,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It
#pragma mark Job Handling
-- (void) PrepareJob
+- (void) prepareJob
{
hb_list_t * list = hb_get_titles( fHandle );
hb_title_t * title = (hb_title_t *) hb_list_item( list,
@@ -1519,7 +1519,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It
// be lumped together in the UI.
job->sequence_id = -1;
- [self PrepareJob];
+ [self prepareJob];
/* Destination file */
job->file = [[fDstFile2Field stringValue] UTF8String];
@@ -2342,7 +2342,7 @@ the user is using "Custom" settings by determining the sender*/
[fSrcTitlePopUp indexOfSelectedItem] );
hb_job_t * job = title->job;
- [self PrepareJob];
+ [self prepareJob];
[fVidBitrateField setIntValue: hb_calc_bitrate( job,
[fVidTargetSizeField intValue] )];