From 75ee6b48062864c9d907bf41996a7b8be3668387 Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Thu, 10 Apr 2014 08:44:44 -0400 Subject: [PATCH] Fixed once more true/false errors --- UI/PreferencesUI/UIxPreferences.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/UI/PreferencesUI/UIxPreferences.m b/UI/PreferencesUI/UIxPreferences.m index 87059c608..b5338e4a1 100644 --- a/UI/PreferencesUI/UIxPreferences.m +++ b/UI/PreferencesUI/UIxPreferences.m @@ -1063,7 +1063,7 @@ static NSArray *reminderValues = nil; obj = [vacationOptions objectForKey: @"ignoreLists"]; if (obj == nil) - ignore = YES; // defaults to true + ignore = YES; // defaults to YES else ignore = [obj boolValue]; @@ -1233,8 +1233,8 @@ static NSArray *reminderValues = nil; - (BOOL) isSieveServerAvailable { return (([(NGSieveClient *)[self sieveClient] isConnected]) - ? true - : false); + ? YES + : NO); } - (id ) defaultAction