aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/QueryKit/Source/QKQueryConstruct.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2012-07-15 11:50:55 +0000
committerstuconnolly <stuart02@gmail.com>2012-07-15 11:50:55 +0000
commite94aba4e949c5ca125fd211b403697a580a6ce39 (patch)
treed120befff62f1662ebea87411bc96a7f5cce7b43 /Frameworks/QueryKit/Source/QKQueryConstruct.h
parentc5133a64a535bccfa2c0ad333e56c8a3b02a01dc (diff)
downloadsequelpro-e94aba4e949c5ca125fd211b403697a580a6ce39.tar.gz
sequelpro-e94aba4e949c5ca125fd211b403697a580a6ce39.tar.bz2
sequelpro-e94aba4e949c5ca125fd211b403697a580a6ce39.zip
Don't explicitly define property accessor names.
Diffstat (limited to 'Frameworks/QueryKit/Source/QKQueryConstruct.h')
-rw-r--r--Frameworks/QueryKit/Source/QKQueryConstruct.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Frameworks/QueryKit/Source/QKQueryConstruct.h b/Frameworks/QueryKit/Source/QKQueryConstruct.h
index be3ab220..bf4a786b 100644
--- a/Frameworks/QueryKit/Source/QKQueryConstruct.h
+++ b/Frameworks/QueryKit/Source/QKQueryConstruct.h
@@ -43,13 +43,13 @@
}
/**
- * @property _identifierQuote The quoute character to use for identifiers.
+ * @property identifierQuote The quoute character to use for identifiers.
*/
-@property(readwrite, retain, getter=identifierQuote, setter=setIdentifierQuote:) NSString *_identiferQuote;
+@property(readwrite, retain) NSString *identifierQuote;
/**
- * @property _useQuotedIdentifier Indicates whether or not identifiers should be quoted.
+ * @property useQuotedIdentifier Indicates whether or not identifiers should be quoted.
*/
-@property(readwrite, assign, getter=useQuotedIdentifier, setter=setUseQuotedIdentifier:) BOOL _useQuotedIdentifier;
+@property(readwrite, assign) BOOL useQuotedIdentifier;
@end