diff options
author | rowanbeentje <rowan@beent.je> | 2010-01-09 01:38:23 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2010-01-09 01:38:23 +0000 |
commit | 9004533ba1d84d670a77cbfc9eae401b66e9dd0e (patch) | |
tree | 8d16781c788a964e45102b66ffc04b77fa1fb9e9 /Source/SPConnectionController.h | |
parent | fcb6ce6cbb0bd4179e22a3dd17dd12e4a3529cdd (diff) | |
download | sequelpro-9004533ba1d84d670a77cbfc9eae401b66e9dd0e.tar.gz sequelpro-9004533ba1d84d670a77cbfc9eae401b66e9dd0e.tar.bz2 sequelpro-9004533ba1d84d670a77cbfc9eae401b66e9dd0e.zip |
- Upgrade Sequel Pro to be compiled as a 3-way PPC/i386/x86_64 binary for release builds, including a large number of 64bit compatibility upgrades and tweaks
- Upgrade RegexKitLite to 3.3
Diffstat (limited to 'Source/SPConnectionController.h')
-rw-r--r-- | Source/SPConnectionController.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/SPConnectionController.h b/Source/SPConnectionController.h index d0a70148..f2c6ba9a 100644 --- a/Source/SPConnectionController.h +++ b/Source/SPConnectionController.h @@ -59,8 +59,8 @@ MCPConnection *mySQLConnection; BOOL automaticFavoriteSelection; - int previousType; - int type; + NSInteger previousType; + NSInteger type; NSString *name; NSString *host; NSString *user; @@ -106,7 +106,7 @@ } @property (readwrite, assign) id delegate; -@property (readwrite, assign) int type; +@property (readwrite, assign) NSInteger type; @property (readwrite, retain) NSString *name; @property (readwrite, retain) NSString *host; @property (readwrite, retain) NSString *user; @@ -132,13 +132,13 @@ - (void)sshTunnelCallback:(SPSSHTunnel *)theTunnel; - (void)initiateMySQLConnection; - (void)failConnectionWithTitle:(NSString *)theTitle errorMessage:(NSString *)theErrorMessage detail:(NSString *)errorDetail; -- (void)errorSheetDidEnd:(NSWindow *)sheet returnCode:(int)returnCode contextInfo:(NSString *)contextInfo; +- (void)errorSheetDidEnd:(NSWindow *)sheet returnCode:(NSInteger)returnCode contextInfo:(NSString *)contextInfo; - (void)addConnectionToDocument; // Interface interaction - (IBAction)editFavorites:(id)sender; - (IBAction)showHelp:(id)sender; -- (void)resizeTabViewToConnectionType:(unsigned int)theType animating:(BOOL)animate; +- (void)resizeTabViewToConnectionType:(NSUInteger)theType animating:(BOOL)animate; // Connection details interaction - (BOOL)checkHost; |