diff options
author | stuconnolly <stuart02@gmail.com> | 2009-10-27 14:29:13 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-10-27 14:29:13 +0000 |
commit | 787dbdc988bb62c63f9fd01d42d4f5c0fa00bdfd (patch) | |
tree | d718d0df2f06c325286aa5f7443f519cfd08eacd /Source/TableDocument.m | |
parent | 800d4b17b5f7031c56984dc57f4aacd6a5256562 (diff) | |
download | sequelpro-787dbdc988bb62c63f9fd01d42d4f5c0fa00bdfd.tar.gz sequelpro-787dbdc988bb62c63f9fd01d42d4f5c0fa00bdfd.tar.bz2 sequelpro-787dbdc988bb62c63f9fd01d42d4f5c0fa00bdfd.zip |
Fix incorrectly named preference constant.
Diffstat (limited to 'Source/TableDocument.m')
-rw-r--r-- | Source/TableDocument.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/TableDocument.m b/Source/TableDocument.m index 21e12919..ed5f86a6 100644 --- a/Source/TableDocument.m +++ b/Source/TableDocument.m @@ -3377,7 +3377,7 @@ */ - (void)queryGaveError:(NSString *)error connection:(id)connection { - if ([prefs boolForKey:SPConsoleEnableLogging] && [prefs boolForKey:SPEnableErrorLogging]) { + if ([prefs boolForKey:SPConsoleEnableLogging] && [prefs boolForKey:SPConsoleEnableErrorLogging]) { [[SPQueryController sharedQueryController] showErrorInConsole:error]; } } |