diff options
author | stuconnolly <stuart02@gmail.com> | 2012-09-12 11:06:55 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-09-12 11:06:55 +0000 |
commit | 4bac2aa3a2feb2c7eda3064e070cac005e7fa256 (patch) | |
tree | cdbb47e05d29b9ab0b825a6a4032b6c3986b848c | |
parent | 4c4d1fe137e6fb56ebc0c962c7aaa0a926d81722 (diff) | |
download | sequelpro-4bac2aa3a2feb2c7eda3064e070cac005e7fa256.tar.gz sequelpro-4bac2aa3a2feb2c7eda3064e070cac005e7fa256.tar.bz2 sequelpro-4bac2aa3a2feb2c7eda3064e070cac005e7fa256.zip |
Fix incorrect selector.
-rw-r--r-- | Frameworks/PostgresKit/Source/FLXPostgresConnection.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Frameworks/PostgresKit/Source/FLXPostgresConnection.m b/Frameworks/PostgresKit/Source/FLXPostgresConnection.m index e5253fa8..5155b79a 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresConnection.m +++ b/Frameworks/PostgresKit/Source/FLXPostgresConnection.m @@ -101,7 +101,7 @@ static void _FLXPostgresConnectionNoticeProcessor(void *arg, const char *message _stringEncoding = FLXPostgresConnectionDefaultStringEncoding; _encoding = [NSString stringWithString:FLXPostgresConnectionDefaultEncoding]; - _delegateSupportsWillExecute = [_delegate respondsToSelector:@selector(connection:willExecute:values:)]; + _delegateSupportsWillExecute = [_delegate respondsToSelector:@selector(connection:willExecute:withValues:)]; _typeMap = [[NSMutableDictionary alloc] init]; |