Skip to content

Commit

Permalink
Compile the preference pane with gcc, for dead old OSX versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
jedisct1 committed Aug 8, 2012
1 parent 7b6246a commit 58da45d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions DNSCrypt-Preference-Pane/DNSCrypt.xcodeproj/project.pbxproj
Expand Up @@ -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;
Expand All @@ -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;
Expand Down
32 changes: 16 additions & 16 deletions DNSCrypt-Preference-Pane/DNSCrypt/DNSCrypt.h
Expand Up @@ -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;

Expand Down

0 comments on commit 58da45d

Please sign in to comment.