diff options
Diffstat (limited to 'Source/SPDataCellFormatter.h')
-rw-r--r-- | Source/SPDataCellFormatter.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/SPDataCellFormatter.h b/Source/SPDataCellFormatter.h index 9c2e8c3a..a669fdc6 100644 --- a/Source/SPDataCellFormatter.h +++ b/Source/SPDataCellFormatter.h @@ -27,14 +27,14 @@ @interface SPDataCellFormatter : NSFormatter { - int textLimit; + NSInteger textLimit; } #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 - @property int textLimit; + @property NSInteger textLimit; #else - -(int)textLimit; - -(void)setTextLimit:(int)limit; + -(NSInteger)textLimit; + -(void)setTextLimit:(NSInteger)limit; #endif @end |