Skip to content

Commit

Permalink
Merge branch 'release-1.7.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
odrobnik committed Oct 7, 2015
2 parents aa90b13 + 412ca81 commit 21eb993
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Core/Source/iOS/BlocksAdditions/DTActionSheet.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ typedef void (^DTActionSheetBlock)(void);
/**
Extends UIActionSheet with support for blocks.
*/
#if !TARGET_OS_TV
#if !TARGET_OS_TV && __IPHONE_OS_VERSION_MAX_ALLOWED < 80300
@interface DTActionSheet : UIActionSheet

/**
Expand Down
2 changes: 1 addition & 1 deletion Core/Source/iOS/BlocksAdditions/DTActionSheet.m
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#import "DTLog.h"

#if !TARGET_OS_TV
#if !TARGET_OS_TV && __IPHONE_OS_VERSION_MAX_ALLOWED < 80300

@interface DTActionSheet () <UIActionSheetDelegate>

Expand Down
2 changes: 1 addition & 1 deletion Core/Source/iOS/BlocksAdditions/DTAlertView.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#import "DTWeakSupport.h"

#if !TARGET_OS_TV
#if !TARGET_OS_TV && __IPHONE_OS_VERSION_MAX_ALLOWED < 90000
// the block to execute when an alert button is tapped
typedef void (^DTAlertViewBlock)(void);

Expand Down
3 changes: 2 additions & 1 deletion Core/Source/iOS/BlocksAdditions/DTAlertView.m
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@

#import "DTAlertView.h"
#import "DTLog.h"
#if !TARGET_OS_TV

#if !TARGET_OS_TV && __IPHONE_OS_VERSION_MAX_ALLOWED < 90000
@interface DTAlertView() <UIAlertViewDelegate>

@end
Expand Down

0 comments on commit 21eb993

Please sign in to comment.