aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPConnectionDelegate.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2012-05-11 18:40:21 +0000
committerstuconnolly <stuart02@gmail.com>2012-05-11 18:40:21 +0000
commitf1ccc7844f7b5a76a0503731fdc134e1f07b7c98 (patch)
tree4eae6d7fefc7fd50fda91e697225624d2379b0c5 /Source/SPConnectionDelegate.m
parente97cd01d00f47fb8629d6aa67a3848852b299f6c (diff)
downloadsequelpro-f1ccc7844f7b5a76a0503731fdc134e1f07b7c98.tar.gz
sequelpro-f1ccc7844f7b5a76a0503731fdc134e1f07b7c98.tar.bz2
sequelpro-f1ccc7844f7b5a76a0503731fdc134e1f07b7c98.zip
Fix remaining implicit cast warnings.
Diffstat (limited to 'Source/SPConnectionDelegate.m')
-rw-r--r--Source/SPConnectionDelegate.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPConnectionDelegate.m b/Source/SPConnectionDelegate.m
index 0d41a3ac..6b6a4dd1 100644
--- a/Source/SPConnectionDelegate.m
+++ b/Source/SPConnectionDelegate.m
@@ -123,7 +123,7 @@
*/
- (SPMySQLConnectionLostDecision)connectionLost:(id)connection
{
- NSInteger connectionErrorCode = SPMySQLConnectionLostDisconnect;
+ SPMySQLConnectionLostDecision connectionErrorCode = SPMySQLConnectionLostDisconnect;
// Only display the reconnect dialog if the window is visible
if ([self parentWindow] && [[self parentWindow] isVisible]) {