Skip to content

Commit

Permalink
Merge pull request #27 from RobotsAndPencils/master
Browse files Browse the repository at this point in the history
NSRectEdge -> NSUInteger to support OSX 10.11
  • Loading branch information
indragiek committed Jul 7, 2015
2 parents 4f21a3d + 2990747 commit 82c4c58
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion INPopoverController.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Pod::Spec.new do |s|
s.version = '0.0.1'
s.summary = 'A customizable popover controller for Mac OS X'
s.homepage = 'https://github.com/indragiek/INPopoverController'
s.author = { 'Indragie Karunaratne' => 'i@indragie.com' }
s.author = { 'Indragie Karunaratne' => 'indragiek@gmail.com' }
s.source = { :git => 'https://github.com/indragiek/INPopoverController.git' }
s.source_files = 'INPopoverController/*.{h,m}'
s.public_header_files = 'INPopoverController/*.h'
Expand Down
10 changes: 5 additions & 5 deletions INPopoverController/INPopoverControllerDefines.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
// Copyright 2011-2014 Indragie Karunaratne. All rights reserved.
//

typedef NS_ENUM(NSRectEdge, INPopoverArrowDirection) {
typedef NS_ENUM(NSUInteger, INPopoverArrowDirection) {
INPopoverArrowDirectionUndefined = 0,
INPopoverArrowDirectionLeft = NSMaxXEdge,
INPopoverArrowDirectionRight = NSMinXEdge,
INPopoverArrowDirectionUp = NSMaxYEdge,
INPopoverArrowDirectionDown = NSMinYEdge
INPopoverArrowDirectionLeft,
INPopoverArrowDirectionRight,
INPopoverArrowDirectionUp,
INPopoverArrowDirectionDown
};

typedef NS_ENUM(NSInteger, INPopoverAnimationType) {
Expand Down

0 comments on commit 82c4c58

Please sign in to comment.