summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authordynaflash <[email protected]>2009-09-16 15:32:20 +0000
committerdynaflash <[email protected]>2009-09-16 15:32:20 +0000
commitb555439da6188954063c9bed6f4c22dd90ca438b (patch)
tree895db878fea59dad90842e416de5432ec95ded24 /macosx
parent6e73207f495b3ffa5d9b676aade30a65ebf70bd8 (diff)
MacGui: Remove hosed up "NSString stringWithFormat :"in the advanced panel as we do not need it and never provided a format for some bizarre reason which I am at a loss to explain.
- Quites down two more compiler warnings. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2829 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r--macosx/HBAdvancedController.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBAdvancedController.m b/macosx/HBAdvancedController.m
index 7555ee5a4..8ecc26367 100644
--- a/macosx/HBAdvancedController.m
+++ b/macosx/HBAdvancedController.m
@@ -398,7 +398,7 @@
}
/* Change the option string to reflect the new standardized option string */
- [fDisplayX264Options setStringValue:[NSString stringWithFormat:changedOptString]];
+ [fDisplayX264Options setStringValue:changedOptString];
}
/**
@@ -1332,7 +1332,7 @@
}
/* Change the dislayed option string to reflect the new modified settings */
- [fDisplayX264Options setStringValue:[NSString stringWithFormat:changedOptString]];
+ [fDisplayX264Options setStringValue:changedOptString];
}
else // if none exists, add it to the string
{