aboutsummaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2012-08-27 06:58:20 +0000
committerstuconnolly <stuart02@gmail.com>2012-08-27 06:58:20 +0000
commit83e1b0430ef46225aa1c1108e960c3758d5086e3 (patch)
tree0c971ba3ea555910052a1dcb619ab2a8e6840481 /Source
parente6d2ca221746bac11abcc43f80983ae9e5f2c0d6 (diff)
downloadsequelpro-83e1b0430ef46225aa1c1108e960c3758d5086e3.tar.gz
sequelpro-83e1b0430ef46225aa1c1108e960c3758d5086e3.tar.bz2
sequelpro-83e1b0430ef46225aa1c1108e960c3758d5086e3.zip
Should inherit from NSObject.
Diffstat (limited to 'Source')
-rw-r--r--Source/SPConnectionControllerDelegateProtocol.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/SPConnectionControllerDelegateProtocol.h b/Source/SPConnectionControllerDelegateProtocol.h
index 352c439f..7f026b6d 100644
--- a/Source/SPConnectionControllerDelegateProtocol.h
+++ b/Source/SPConnectionControllerDelegateProtocol.h
@@ -37,19 +37,19 @@
*
* Connection controller delegate protocol.
*/
-@protocol SPConnectionControllerDelegateProtocol
+@protocol SPConnectionControllerDelegateProtocol <NSObject>
/**
* Called when the connection controller starts initiating the connection process.
*
- * @param controller The calling connection controller
+ * @param controller The calling connection controller.
*/
- (void)connectionControllerInitiatingConnection:(id)controller;
/**
* Called when the connection controller's connection attempt failed.
*
- * @param controller The calling connection controller
+ * @param controller The calling connection controller.
*/
- (void)connectionControllerConnectAttemptFailed:(id)controller;