diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-07 06:53:52 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-08 01:50:04 -0800 |
commit | bf7c998c9b68756e925462bbfe1f9a699fc5055b (patch) | |
tree | 14f65a999df9ff282876450581034ce9a3fcd5d3 /CyteKit/TableViewCell.h | |
parent | dfdb9ae0d3bc3689c3ca7b59e92f45c1b3ecb28f (diff) |
Automate set{Delegate,DataSource}:nil using _H<>.
Diffstat (limited to 'CyteKit/TableViewCell.h')
-rw-r--r-- | CyteKit/TableViewCell.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CyteKit/TableViewCell.h b/CyteKit/TableViewCell.h index 27fd650..719b16b 100644 --- a/CyteKit/TableViewCell.h +++ b/CyteKit/TableViewCell.h @@ -44,7 +44,7 @@ #include <UIKit/UIKit.h> -#include <CydiaSubstrate/CydiaSubstrate.h> +#include <Menes/ObjectHandle.h> @protocol CyteTableViewCellDelegate - (void) drawContentRect:(CGRect)rect; @@ -57,7 +57,7 @@ @end @interface CYTableViewCell : UITableViewCell { - _H<CyteTableViewCellContentView> content_; + _H<CyteTableViewCellContentView, 1> content_; bool highlighted_; } |