Skip to content

Commit

Permalink
Fixed problem on FRC Macros
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasgoutaland committed Aug 14, 2014
1 parent 72562ee commit bf5c3d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Classes/GONFRCMacros.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

/* Default implementation for a FRC, in a view controller with an UITableView property */
#define FRC_TABLEVIEW_DEFAULT_IMPLEMENTATION FRC_TABLEVIEW_DEFAULT_IMPLEMENTATION_FOR_TABLEVIEW(self.tableView)
#define FRC_TABLEVIEW_DEFAULT_IMPLEMENTATION FRC_TABLEVIEW_DEFAULT_IMPLEMENTATION_FOR_TABLEVIEW(_tableView)
#define FRC_TABLEVIEW_DEFAULT_IMPLEMENTATION_FOR_TABLEVIEW(aTableView) FRC_TABLEVIEW_DEFAULT_IMPLEMENTATION_FOR_TABLEVIEW_UPDATE_SELECTOR(aTableView, nil)
#define FRC_TABLEVIEW_DEFAULT_IMPLEMENTATION_UPDATE_SELECTOR(updateSelector) FRC_TABLEVIEW_DEFAULT_IMPLEMENTATION_FOR_TABLEVIEW_UPDATE_SELECTOR(_tableView, updateSelector)

Expand Down Expand Up @@ -58,7 +58,7 @@
}

/* Default implementation for a FRC, in a view controller with an UICollectionView property */
#define FRC_COLLECTIONVIEW_DEFAULT_IMPLEMENTATION FRC_COLLECTIONVIEW_DEFAULT_IMPLEMENTATION_FOR_COLLECTIONVIEW(self.collectionView)
#define FRC_COLLECTIONVIEW_DEFAULT_IMPLEMENTATION FRC_COLLECTIONVIEW_DEFAULT_IMPLEMENTATION_FOR_COLLECTIONVIEW(_collectionView)
#define FRC_COLLECTIONVIEW_DEFAULT_IMPLEMENTATION_FOR_COLLECTIONVIEW(aCollectionView) FRC_COLLECTIONVIEW_DEFAULT_IMPLEMENTATION_FOR_COLLECTIONVIEW_UPDATE_SELECTOR(aCollectionView, nil)
#define FRC_COLLECTIONVIEW_DEFAULT_IMPLEMENTATION_UPDATE_SELECTOR(updateSelector) FRC_COLLECTIONVIEW_DEFAULT_IMPLEMENTATION_FOR_COLLECTIONVIEW_UPDATE_SELECTOR(_collectionView, updateSelector)

Expand Down

0 comments on commit bf5c3d1

Please sign in to comment.