diff options
author | stuconnolly <stuart02@gmail.com> | 2010-03-06 13:40:08 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-03-06 13:40:08 +0000 |
commit | 54da3a6b973deb893ce9c8d094ce37ef4c66f9d6 (patch) | |
tree | 32de294b7b36afab0e6b78b1b29b3562bd2c06f2 | |
parent | 5052718afb789f21654e094f2d065baf6bb6ac81 (diff) | |
download | sequelpro-54da3a6b973deb893ce9c8d094ce37ef4c66f9d6.tar.gz sequelpro-54da3a6b973deb893ce9c8d094ce37ef4c66f9d6.tar.bz2 sequelpro-54da3a6b973deb893ce9c8d094ce37ef4c66f9d6.zip |
Fix warning introduced in r1850 by making SPAppController conform to the FeebackReporter's FRFeedbackReporterDelegate protocol.
-rw-r--r-- | Source/SPAppController.h | 3 | ||||
-rw-r--r-- | Source/SPAppController.m | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Source/SPAppController.h b/Source/SPAppController.h index 5b5c5554..3f661d08 100644 --- a/Source/SPAppController.h +++ b/Source/SPAppController.h @@ -24,10 +24,11 @@ // More info at <http://code.google.com/p/sequel-pro/> #import <Cocoa/Cocoa.h> +#import <FeedbackReporter/FRFeedbackReporter.h> @class SPPreferenceController, SPAboutController; -@interface SPAppController : NSObject +@interface SPAppController : NSObject <FRFeedbackReporterDelegate> { BOOL isNewFavorite; diff --git a/Source/SPAppController.m b/Source/SPAppController.m index 9feea4e9..7c5db4eb 100644 --- a/Source/SPAppController.m +++ b/Source/SPAppController.m @@ -420,7 +420,7 @@ /** * Anonymises the preferences dictionary before feedback submission */ -- (NSMutableDictionary*) anonymizePreferencesForFeedbackReport:(NSMutableDictionary *)preferences +- (NSMutableDictionary*)anonymizePreferencesForFeedbackReport:(NSMutableDictionary *)preferences { [preferences removeObjectsForKeys:[NSArray arrayWithObjects:@"ContentFilters", @"favorites", |