Skip to content

Commit

Permalink
Revert "Using NS_ENUM in place of typedef enum"
Browse files Browse the repository at this point in the history
This reverts commit c4065c9.
  • Loading branch information
mattt committed Oct 10, 2012
1 parent c4065c9 commit 9130f0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TTTAttributedLabel.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
/**
Vertical alignment for text in a label whose bounds are larger than its text bounds
*/
typedef NS_ENUM(NSInteger, TTTAttributedLabelVerticalAlignment) {
typedef enum {
TTTAttributedLabelVerticalAlignmentCenter = 0,
TTTAttributedLabelVerticalAlignmentTop = 1,
TTTAttributedLabelVerticalAlignmentBottom = 2,
};
} TTTAttributedLabelVerticalAlignment;

/**
Determines whether the text to which this attribute applies has a strikeout drawn through itself.
Expand Down

0 comments on commit 9130f0c

Please sign in to comment.