diff options
author | stuconnolly <stuart02@gmail.com> | 2012-08-27 06:58:20 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-08-27 06:58:20 +0000 |
commit | 83e1b0430ef46225aa1c1108e960c3758d5086e3 (patch) | |
tree | 0c971ba3ea555910052a1dcb619ab2a8e6840481 /Source | |
parent | e6d2ca221746bac11abcc43f80983ae9e5f2c0d6 (diff) | |
download | sequelpro-83e1b0430ef46225aa1c1108e960c3758d5086e3.tar.gz sequelpro-83e1b0430ef46225aa1c1108e960c3758d5086e3.tar.bz2 sequelpro-83e1b0430ef46225aa1c1108e960c3758d5086e3.zip |
Should inherit from NSObject.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPConnectionControllerDelegateProtocol.h | 6 |
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; |