summaryrefslogtreecommitdiffstats
path: root/macosx/Controller.mm
diff options
context:
space:
mode:
authordynaflash <[email protected]>2008-02-13 14:25:06 +0000
committerdynaflash <[email protected]>2008-02-13 14:25:06 +0000
commit291982989bc13b78d3b189912eaba6d19ccd91a2 (patch)
treee52ac8b42f5cb388d8dac1464cbe5ebf8a7364d4 /macosx/Controller.mm
parentcd3a4eb1898c925539858848dad989fc513e8d0f (diff)
MacGui: remove the preference to turn off verbose output in the activity window.
- non verbose output is of no use whatsoever to the macgui - uses "HB_DEBUG_ALL" for hb_init - removed preference from preferences window git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1259 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.mm')
-rw-r--r--macosx/Controller.mm6
1 files changed, 2 insertions, 4 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm
index d8ce1bfd9..4d955b531 100644
--- a/macosx/Controller.mm
+++ b/macosx/Controller.mm
@@ -98,12 +98,10 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It
//char * version;
// Init libhb
- int debugLevel = [[NSUserDefaults standardUserDefaults] boolForKey:@"ShowVerboseOutput"] ? HB_DEBUG_ALL : HB_DEBUG_NONE;
- /* Old update method using hb_init, commented out but code left for a few revs til new sparkle updater is vetted */
+ /* Old update method using hb_init, commented out but code left for a few revs til new sparkle updater is vetted */
//fHandle = hb_init(debugLevel, [[NSUserDefaults standardUserDefaults] boolForKey:@"CheckForUpdates"]);
/* New Init libhb with check for updates libhb style set to "0" so its ignored and lets sparkle take care of it */
- fHandle = hb_init(debugLevel, 0);
-
+ fHandle = hb_init(HB_DEBUG_ALL, 0);
// Set the Growl Delegate
[GrowlApplicationBridge setGrowlDelegate: self];