Skip to content

Commit

Permalink
Made it possible to test correctly under OS X 10.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
dimaty committed Mar 10, 2016
1 parent e623e18 commit 751bb74
Show file tree
Hide file tree
Showing 20 changed files with 47 additions and 447 deletions.
8 changes: 4 additions & 4 deletions Examples/ActivationsExample/DMActivationsDelegate.m
Expand Up @@ -15,10 +15,10 @@

@interface DMActivationsDelegate () <DMActivationControllerDelegate>

@property (weak) IBOutlet NSWindow *window;
@property (weak) IBOutlet NSButton *activateButton;
@property (strong) DMActivationController *customController;
@property (strong) id notificationObject;
@property (unsafe_unretained) IBOutlet NSWindow *window;
@property (unsafe_unretained) IBOutlet NSButton *activateButton;
@property (retain) DMActivationController *customController;
@property (retain) id notificationObject;

- (IBAction)processActivation:(id)sender;

Expand Down
6 changes: 3 additions & 3 deletions Examples/ActivationsExample/DMLicenseInfoStepController.m
Expand Up @@ -11,9 +11,9 @@

@interface DMLicenseInfoStepController ()

@property (weak) IBOutlet NSTextField *userName;
@property (weak) IBOutlet NSTextField *userEmail;
@property (weak) IBOutlet NSTextField *licenseId;
@property (unsafe_unretained) IBOutlet NSTextField *userName;
@property (unsafe_unretained) IBOutlet NSTextField *userEmail;
@property (unsafe_unretained) IBOutlet NSTextField *licenseId;

@end

Expand Down
4 changes: 2 additions & 2 deletions Examples/CustomTimeTrialExample/DMCustomTimeTrialDelegate.m
Expand Up @@ -12,10 +12,10 @@

@interface DMCustomTimeTrialDelegate () <DMActivationControllerDelegate>

@property (strong) NSMutableArray *observers;
@property (retain) NSMutableArray *observers;
@property (readonly) NSString *activeTimeLeftStr;

@property (weak) IBOutlet NSWindow *window;
@property (unsafe_unretained) IBOutlet NSWindow *window;
@end

@implementation DMCustomTimeTrialDelegate
Expand Down
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="7706" systemVersion="14F27" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="9532" systemVersion="15D21" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
<dependencies>
<deployment identifier="macosx"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="7706"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="9532"/>
</dependencies>
<objects>
<customObject id="-2" userLabel="File's Owner" customClass="NSApplication">
Expand Down Expand Up @@ -677,15 +677,15 @@
<autoresizingMask key="autoresizingMask"/>
<subviews>
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Szp-nZ-IsW">
<rect key="frame" x="18" y="316" width="122" height="24"/>
<rect key="frame" x="18" y="316" width="125" height="24"/>
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Trial time left:" id="x8Y-Uy-BcR">
<font key="font" metaFont="system" size="20"/>
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ZF1-IR-iQ6">
<rect key="frame" x="144" y="316" width="86" height="24"/>
<rect key="frame" x="147" y="316" width="86" height="24"/>
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="unknown" id="s9w-q1-BSm">
<font key="font" metaFont="system" size="20"/>
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
Expand Down

0 comments on commit 751bb74

Please sign in to comment.