Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jegnux committed Apr 11, 2019
1 parent 0756451 commit b94c45c
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Example/RxGesture-OSX/Base.lproj/Main.storyboard
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.Cocoa.Storyboard.XIB" version="3.0" toolsVersion="14313.18" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" initialViewController="B8D-0N-5wS">
<document type="com.apple.InterfaceBuilder3.Cocoa.Storyboard.XIB" version="3.0" toolsVersion="14490.70" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" initialViewController="B8D-0N-5wS">
<dependencies>
<deployment identifier="macosx"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="14313.18"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="14490.70"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<scenes>
Expand Down Expand Up @@ -680,7 +680,7 @@
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="lTO-sj-z2M">
<rect key="frame" x="8" y="257" width="588" height="17"/>
<textFieldCell key="cell" controlSize="mini" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Label" id="z7l-ey-l5X">
<font key="font" metaFont="systemSemibold" size="13"/>
<font key="font" metaFont="systemBold"/>
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1000"
LastUpgradeVersion = "1020"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
2 changes: 1 addition & 1 deletion Pod/Classes/OSX/NSClickGestureRecognizer+RxGesture.swift
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ extension Factory where Gesture == GestureRecognizer {
}
}

public extension Reactive where Base: View {
extension Reactive where Base: View {

/**
Returns an observable `NSClickGestureRecognizer` events sequence
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ extension Factory where Gesture == GestureRecognizer {
}
}

public extension Reactive where Base: View {
extension Reactive where Base: View {

/**
Returns an observable `NSMagnificationGestureRecognizer` events sequence
Expand All @@ -48,7 +48,7 @@ public extension Reactive where Base: View {
}
}

public extension ObservableType where E: NSMagnificationGestureRecognizer {
extension ObservableType where E: NSMagnificationGestureRecognizer {

/**
Maps the observable `GestureRecognizer` events sequence to an observable sequence of magnification amounts alongside the gesture velocity.
Expand Down
4 changes: 2 additions & 2 deletions Pod/Classes/OSX/NSPanGestureRecognizer+RxGesture.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ extension Factory where Gesture == GestureRecognizer {
}
}

public extension Reactive where Base: View {
extension Reactive where Base: View {

/**
Returns an observable `NSPanGestureRecognizer` events sequence
Expand All @@ -48,7 +48,7 @@ public extension Reactive where Base: View {
}
}

public extension ObservableType where E: NSPanGestureRecognizer {
extension ObservableType where E: NSPanGestureRecognizer {

/**
Maps the observable `GestureRecognizer` events sequence to an observable sequence of translation values of the pan gesture in the coordinate system of the specified `view` alongside the gesture velocity.
Expand Down
2 changes: 1 addition & 1 deletion Pod/Classes/OSX/NSPressGestureRecognizer+RxGesture.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ extension Factory where Gesture == GestureRecognizer {
}
}

public extension Reactive where Base: View {
extension Reactive where Base: View {

/**
Returns an observable `NSPressGestureRecognizer` events sequence
Expand Down
4 changes: 2 additions & 2 deletions Pod/Classes/OSX/NSRotationGestureRecognizer+RxGesture.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ extension Factory where Gesture == GestureRecognizer {
}
}

public extension Reactive where Base: View {
extension Reactive where Base: View {

/**
Returns an observable `NSRotationGestureRecognizer` events sequence
Expand All @@ -48,7 +48,7 @@ public extension Reactive where Base: View {
}
}

public extension ObservableType where E: NSRotationGestureRecognizer {
extension ObservableType where E: NSRotationGestureRecognizer {

/**
Maps the observable `GestureRecognizer` events sequence to an observable sequence of rotation values of the gesture in radians.
Expand Down

0 comments on commit b94c45c

Please sign in to comment.