Updated manager for quincy logging and new delegate

This commit is contained in:
Andreas Linde 2011-12-07 16:03:40 +01:00
parent f20b89168d
commit b3e7239ed1
2 changed files with 5 additions and 0 deletions

View File

@ -80,6 +80,9 @@
// user for an app rating :) // user for an app rating :)
- (void)willShowSubmitCrashReportAlert; - (void)willShowSubmitCrashReportAlert;
// Invoked after the user did choose to send crashes always in the alert
-(void) userDidChooseSendAlways;
@end @end
@interface CNSHockeyManager : NSObject { @interface CNSHockeyManager : NSObject {

View File

@ -145,10 +145,12 @@
- (BOOL)isLoggingEnabled { - (BOOL)isLoggingEnabled {
return [[BWHockeyManager sharedHockeyManager] isLoggingEnabled]; return [[BWHockeyManager sharedHockeyManager] isLoggingEnabled];
return [[BWQuincyManager sharedQuincyManager] isLoggingEnabled];
} }
- (void)setLoggingEnabled:(BOOL)loggingEnabled { - (void)setLoggingEnabled:(BOOL)loggingEnabled {
return [[BWHockeyManager sharedHockeyManager] setLoggingEnabled:loggingEnabled]; return [[BWHockeyManager sharedHockeyManager] setLoggingEnabled:loggingEnabled];
return [[BWQuincyManager sharedQuincyManager] setLoggingEnabled:loggingEnabled];
} }
#pragma mark - Public Instance Methods (Crash Reporting) #pragma mark - Public Instance Methods (Crash Reporting)