Skip to content

Commit

Permalink
add missing external declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
steipete committed Sep 25, 2012
1 parent a34f7de commit 69b7efe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions PSTCollectionView/PSTCollectionViewFlowLayout.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ typedef NS_ENUM(NSInteger, UICollectionViewScrollDirection) {
rowAlign[@"UIFlowLayoutLastRowHorizontalAlignmentKey"] = @(3);
[flowLayout setValue:rowAlign forKey:@"_rowAlignmentsOptionsDictionary"];
*/
@property(nonatomic, strong) NSDictionary *rowAlignmentOptions;
@property (nonatomic, strong) NSDictionary *rowAlignmentOptions;

@end

// @steipete addition, private API in UICollectionViewFlowLayout
NSString *const PSTFlowLayoutCommonRowHorizontalAlignmentKey;
NSString *const PSTFlowLayoutLastRowHorizontalAlignmentKey;
NSString *const PSTFlowLayoutRowVerticalAlignmentKey;
extern NSString *const PSTFlowLayoutCommonRowHorizontalAlignmentKey;
extern NSString *const PSTFlowLayoutLastRowHorizontalAlignmentKey;
extern NSString *const PSTFlowLayoutRowVerticalAlignmentKey;

typedef NS_ENUM(NSInteger, PSTFlowLayoutHorizontalAlignment) {
PSTFlowLayoutHorizontalAlignmentLeft,
Expand Down

0 comments on commit 69b7efe

Please sign in to comment.