aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/QueryKit/Source/QKQueryOrderBy.h
diff options
context:
space:
mode:
Diffstat (limited to 'Frameworks/QueryKit/Source/QKQueryOrderBy.h')
-rw-r--r--Frameworks/QueryKit/Source/QKQueryOrderBy.h8
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;