diff --git a/DNSCrypt-Preference-Pane/DNSCrypt.xcodeproj/project.pbxproj b/DNSCrypt-Preference-Pane/DNSCrypt.xcodeproj/project.pbxproj index 7219bdc..df72136 100644 --- a/DNSCrypt-Preference-Pane/DNSCrypt.xcodeproj/project.pbxproj +++ b/DNSCrypt-Preference-Pane/DNSCrypt.xcodeproj/project.pbxproj @@ -294,7 +294,7 @@ "$(inherited)", ); GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + GCC_VERSION = com.apple.compilers.llvmgcc42; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES; @@ -317,7 +317,7 @@ GCC_C_LANGUAGE_STANDARD = gnu99; GCC_ENABLE_OBJC_EXCEPTIONS = YES; GCC_ENABLE_OBJC_GC = supported; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + GCC_VERSION = com.apple.compilers.llvmgcc42; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES; diff --git a/DNSCrypt-Preference-Pane/DNSCrypt/DNSCrypt.h b/DNSCrypt-Preference-Pane/DNSCrypt/DNSCrypt.h index 16076eb..05773c6 100644 --- a/DNSCrypt-Preference-Pane/DNSCrypt/DNSCrypt.h +++ b/DNSCrypt-Preference-Pane/DNSCrypt/DNSCrypt.h @@ -32,22 +32,22 @@ typedef enum { @interface DNSCrypt : NSPreferencePane { AuthorizationRef auth; } -@property (strong) IBOutlet NSTabView *tabView; -@property (strong) IBOutlet NSTabViewItem *aboutTabViewItem; -@property (strong) IBOutlet NSTabViewItem *releaseNotesTabViewItem; - -@property (strong) IBOutlet NSButton *dnscryptButton; -@property (strong) IBOutlet NSButton *opendnsButton; -@property (strong) IBOutlet NSButton *familyShieldButton; -@property (strong) IBOutlet NSButton *fallbackButton; - -@property (strong) IBOutlet NSTextField *currentResolverTextField; -@property (strong) IBOutlet NSImageView *statusImageView; -@property (strong) IBOutlet NSTextField *statusText; -@property (strong) IBOutlet WebView *previewNotesWebView; -@property (strong) IBOutlet WebView *releaseNotesWebView; -@property (strong) IBOutlet WebView *feedbackWebView; -@property (strong) IBOutlet WebView *aboutWebView; +@property (nonatomic, retain) IBOutlet NSTabView *tabView; +@property (nonatomic, retain) IBOutlet NSTabViewItem *aboutTabViewItem; +@property (nonatomic, retain) IBOutlet NSTabViewItem *releaseNotesTabViewItem; + +@property (nonatomic, retain) IBOutlet NSButton *dnscryptButton; +@property (nonatomic, retain) IBOutlet NSButton *opendnsButton; +@property (nonatomic, retain) IBOutlet NSButton *familyShieldButton; +@property (nonatomic, retain) IBOutlet NSButton *fallbackButton; + +@property (nonatomic, retain) IBOutlet NSTextField *currentResolverTextField; +@property (nonatomic, retain) IBOutlet NSImageView *statusImageView; +@property (nonatomic, retain) IBOutlet NSTextField *statusText; +@property (nonatomic, retain) IBOutlet WebView *previewNotesWebView; +@property (nonatomic, retain) IBOutlet WebView *releaseNotesWebView; +@property (nonatomic, retain) IBOutlet WebView *feedbackWebView; +@property (nonatomic, retain) IBOutlet WebView *aboutWebView; - (void) mainViewDidLoad;