diff options
author | stuconnolly <stuart02@gmail.com> | 2012-07-15 11:50:55 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-07-15 11:50:55 +0000 |
commit | e94aba4e949c5ca125fd211b403697a580a6ce39 (patch) | |
tree | d120befff62f1662ebea87411bc96a7f5cce7b43 /Frameworks/QueryKit/Source/QKQueryOrderBy.h | |
parent | c5133a64a535bccfa2c0ad333e56c8a3b02a01dc (diff) | |
download | sequelpro-e94aba4e949c5ca125fd211b403697a580a6ce39.tar.gz sequelpro-e94aba4e949c5ca125fd211b403697a580a6ce39.tar.bz2 sequelpro-e94aba4e949c5ca125fd211b403697a580a6ce39.zip |
Don't explicitly define property accessor names.
Diffstat (limited to 'Frameworks/QueryKit/Source/QKQueryOrderBy.h')
-rw-r--r-- | Frameworks/QueryKit/Source/QKQueryOrderBy.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Frameworks/QueryKit/Source/QKQueryOrderBy.h b/Frameworks/QueryKit/Source/QKQueryOrderBy.h index aa7a80e7..38a3ba7d 100644 --- a/Frameworks/QueryKit/Source/QKQueryOrderBy.h +++ b/Frameworks/QueryKit/Source/QKQueryOrderBy.h @@ -44,14 +44,14 @@ } /** - * @property _orderByField + * @property orderByField */ -@property(readwrite, retain, getter=orderByField, setter=setOrderByField:) NSString *_orderByField; +@property(readwrite, retain) NSString *orderByField; /** - * @property _orderByDescending + * @property orderByDescending */ -@property(readwrite, assign, getter=orderByDescending, setter=setOrderByDescending:) BOOL _orderByDescending; +@property(readwrite, assign) BOOL orderByDescending; + (QKQueryOrderBy *)orderByField:(NSString *)field descending:(BOOL)descending; |