aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPDataCellFormatter.h
diff options
context:
space:
mode:
authoravenjamin <avenjamin@gmail.com>2009-02-27 01:37:27 +0000
committeravenjamin <avenjamin@gmail.com>2009-02-27 01:37:27 +0000
commit51b094e48b68420cd53be08648eab7b671ce1639 (patch)
tree6df11a0bbc1a8528ba43ad05d6f6533e6b37fb7a /Source/SPDataCellFormatter.h
parent10a7c5a32983070158a736e479b2c6200ecd70fd (diff)
downloadsequelpro-51b094e48b68420cd53be08648eab7b671ce1639.tar.gz
sequelpro-51b094e48b68420cd53be08648eab7b671ce1639.tar.bz2
sequelpro-51b094e48b68420cd53be08648eab7b671ce1639.zip
Added length limits to varchar and char fields. Issue #170
Ideally we should add these limits for other field types depending on their length value.
Diffstat (limited to 'Source/SPDataCellFormatter.h')
-rw-r--r--Source/SPDataCellFormatter.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/SPDataCellFormatter.h b/Source/SPDataCellFormatter.h
index aafb1b1c..8784898a 100644
--- a/Source/SPDataCellFormatter.h
+++ b/Source/SPDataCellFormatter.h
@@ -25,7 +25,9 @@
@interface SPDataCellFormatter : NSFormatter {
-
+ NSUInteger textLimit;
}
+@property NSUInteger textLimit;
+
@end