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/QKQueryConstruct.m | |
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/QKQueryConstruct.m')
-rw-r--r-- | Frameworks/QueryKit/Source/QKQueryConstruct.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Frameworks/QueryKit/Source/QKQueryConstruct.m b/Frameworks/QueryKit/Source/QKQueryConstruct.m index db432add..b98c4e7b 100644 --- a/Frameworks/QueryKit/Source/QKQueryConstruct.m +++ b/Frameworks/QueryKit/Source/QKQueryConstruct.m @@ -32,8 +32,8 @@ @implementation QKQueryConstruct -@synthesize _useQuotedIdentifier; -@synthesize _identiferQuote; +@synthesize useQuotedIdentifier = _useQuotedIdentifier; +@synthesize identifierQuote = _identiferQuote; #pragma mark - #pragma mark Initialisation |