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/QKQuery.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/QKQuery.m')
-rw-r--r-- | Frameworks/QueryKit/Source/QKQuery.m | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Frameworks/QueryKit/Source/QKQuery.m b/Frameworks/QueryKit/Source/QKQuery.m index 01dfa1fc..359ca558 100644 --- a/Frameworks/QueryKit/Source/QKQuery.m +++ b/Frameworks/QueryKit/Source/QKQuery.m @@ -59,17 +59,17 @@ static NSString *QKNoQueryTableException = @"QKNoQueryTable"; @implementation QKQuery -@synthesize _database; -@synthesize _table; -@synthesize _identifierQuote; -@synthesize _parameters; -@synthesize _queryType; -@synthesize _queryDatabase; -@synthesize _fields; -@synthesize _updateParameters; -@synthesize _useQuotedIdentifiers; -@synthesize _groupByFields; -@synthesize _orderByFields; +@synthesize database = _database; +@synthesize table = _table; +@synthesize identifierQuote = _identifierQuote; +@synthesize parameters = _parameters; +@synthesize queryType = _queryType; +@synthesize queryDatabase = _queryDatabase; +@synthesize fields = _fields; +@synthesize updateParameters = _updateParameters; +@synthesize useQuotedIdentifiers = _useQuotedIdentifiers; +@synthesize groupByFields = _groupByFields; +@synthesize orderByFields = _orderByFields; #pragma mark - #pragma mark Initialization |