diff options
author | dynaflash <[email protected]> | 2007-02-11 21:32:01 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2007-02-11 21:32:01 +0000 |
commit | 785b404a429cb0d12490a3cb2a31737bf3ced19c (patch) | |
tree | 4acc635e9878b1bc36f70403d9145dfd80942515 | |
parent | 979c6d82d407ed340efc8f06599aa846e56c845c (diff) |
Mac GUI - Disabled the Auto Check for Updates in Preferences until it works.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@294 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | macosx/English.lproj/MainMenu.nib/info.nib | 3 | ||||
-rw-r--r-- | macosx/English.lproj/MainMenu.nib/keyedobjects.nib | bin | 70062 -> 70086 bytes | |||
-rw-r--r-- | macosx/PrefsController.m | 8 |
3 files changed, 6 insertions, 5 deletions
diff --git a/macosx/English.lproj/MainMenu.nib/info.nib b/macosx/English.lproj/MainMenu.nib/info.nib index 22ebbe216..eae7265dc 100644 --- a/macosx/English.lproj/MainMenu.nib/info.nib +++ b/macosx/English.lproj/MainMenu.nib/info.nib @@ -3,7 +3,7 @@ <plist version="1.0"> <dict> <key>IBDocumentLocation</key> - <string>75 -138 555 411 0 0 1440 878 </string> + <string>74 141 555 411 0 0 1440 878 </string> <key>IBEditorPositions</key> <dict> <key>29</key> @@ -17,6 +17,7 @@ </array> <key>IBOpenObjects</key> <array> + <integer>1438</integer> <integer>21</integer> </array> <key>IBSystem Version</key> diff --git a/macosx/English.lproj/MainMenu.nib/keyedobjects.nib b/macosx/English.lproj/MainMenu.nib/keyedobjects.nib Binary files differindex cc030b00e..9f9c43bb3 100644 --- a/macosx/English.lproj/MainMenu.nib/keyedobjects.nib +++ b/macosx/English.lproj/MainMenu.nib/keyedobjects.nib diff --git a/macosx/PrefsController.m b/macosx/PrefsController.m index 6f98400e5..e00051cb9 100644 --- a/macosx/PrefsController.m +++ b/macosx/PrefsController.m @@ -10,7 +10,7 @@ /* Unless the user specified otherwise, default is to check for update fDefPicSizeAutoSetipod*/ defaults = [NSUserDefaults standardUserDefaults]; - appDefaults = [NSDictionary dictionaryWithObject:@"YES" + appDefaults = [NSDictionary dictionaryWithObject:@"NO" forKey:@"CheckForUpdates"]; appDefaults = [NSDictionary dictionaryWithObject:@"English" forKey:@"DefaultLanguage"]; @@ -29,9 +29,9 @@ [defaults registerDefaults: appDefaults]; /* fUpdateCheck Check or uncheck according to the preferences */ - [fUpdateCheck setState: [defaults boolForKey:@"CheckForUpdates"] ? - NSOnState : NSOffState]; - + + [fUpdateCheck setState: 0]; + [fUpdateCheck setEnabled: NO]; // Fill the languages combobox |