Skip to content

Commit

Permalink
renamed macro parameters to fit original
Browse files Browse the repository at this point in the history
  • Loading branch information
odrobnik committed Oct 2, 2013
1 parent 75748db commit 89851a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/Source/DTCompatibility.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

// Edge Insets
#define DTEdgeInsets UIEdgeInsets
#define DTEdgeInsetsMake(a, b, c, d) UIEdgeInsetsMake(a, b, c, d)
#define DTEdgeInsetsMake(top, left, bottom, right) UIEdgeInsetsMake(top, left, bottom, right)

// NS-style text attributes are possible with iOS SDK 6.0 or higher
#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_5_1
Expand Down Expand Up @@ -60,7 +60,7 @@

// Edge Insets
#define DTEdgeInsets NSEdgeInsets
#define DTEdgeInsetsMake(a, b, c, d) NSEdgeInsetsMake(a, b, c, d)
#define DTEdgeInsetsMake(top, left, bottom, right) NSEdgeInsetsMake(top, left, bottom, right)

// Mac supports NS-Style Text Attributes since 10.0
#define DTCORETEXT_SUPPORT_NS_ATTRIBUTES 1
Expand Down

0 comments on commit 89851a7

Please sign in to comment.