diff options
author | stuconnolly <stuart02@gmail.com> | 2012-05-11 18:40:21 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-05-11 18:40:21 +0000 |
commit | f1ccc7844f7b5a76a0503731fdc134e1f07b7c98 (patch) | |
tree | 4eae6d7fefc7fd50fda91e697225624d2379b0c5 /Source/SPSSHTunnel.h | |
parent | e97cd01d00f47fb8629d6aa67a3848852b299f6c (diff) | |
download | sequelpro-f1ccc7844f7b5a76a0503731fdc134e1f07b7c98.tar.gz sequelpro-f1ccc7844f7b5a76a0503731fdc134e1f07b7c98.tar.bz2 sequelpro-f1ccc7844f7b5a76a0503731fdc134e1f07b7c98.zip |
Fix remaining implicit cast warnings.
Diffstat (limited to 'Source/SPSSHTunnel.h')
-rw-r--r-- | Source/SPSSHTunnel.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/SPSSHTunnel.h b/Source/SPSSHTunnel.h index 0984cd43..4466e399 100644 --- a/Source/SPSSHTunnel.h +++ b/Source/SPSSHTunnel.h @@ -23,8 +23,7 @@ // // More info at <http://code.google.com/p/sequel-pro/> -#import <SPMySQL/SPMySQLConnectionProxy.h> -#import <SPMySQL/SPMySQLConstants.h> +#import <SPMySQL/SPMySQL.h> @interface SPSSHTunnel : NSObject <SPMySQLConnectionProxy> { @@ -51,7 +50,7 @@ NSInteger remotePort; NSUInteger localPort; NSUInteger localPortFallback; - NSInteger connectionState; + SPMySQLConnectionProxyState connectionState; NSLock *answerAvailableLock; NSString *currentKeyName; |