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/TableDocument.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/TableDocument.h')
-rw-r--r-- | Source/TableDocument.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Source/TableDocument.h b/Source/TableDocument.h index 391066a9..60bb2bdd 100644 --- a/Source/TableDocument.h +++ b/Source/TableDocument.h @@ -106,7 +106,7 @@ IBOutlet id inputTextWindowHeader; IBOutlet id inputTextWindowMessage; IBOutlet id inputTextWindowSecureTextField; - int passwordSheetReturnCode; + NSInteger passwordSheetReturnCode; // Controllers SPConnectionController *connectionController; @@ -125,16 +125,16 @@ BOOL _encodingViaLatin1; BOOL _shouldOpenConnectionAutomatically; BOOL _isConnected; - int _isWorkingLevel; + NSInteger _isWorkingLevel; BOOL _mainNibLoaded; BOOL databaseListIsSelectable; - int _queryMode; + NSInteger _queryMode; NSWindow *taskProgressWindow; BOOL taskDisplayIsIndeterminate; - float taskProgressValue; - float taskDisplayLastValue; - float taskProgressValueDisplayInterval; + CGFloat taskProgressValue; + CGFloat taskDisplayLastValue; + CGFloat taskProgressValueDisplayInterval; NSTimer *taskDrawTimer; NSViewAnimation *taskFadeAnimator; BOOL taskCanBeCancelled; @@ -185,7 +185,7 @@ - (void) startTaskWithDescription:(NSString *)description; - (void) showTaskProgressWindow:(NSTimer *)theTimer; - (void) setTaskDescription:(NSString *)description; -- (void) setTaskPercentage:(float)taskPercentage; +- (void) setTaskPercentage:(CGFloat)taskPercentage; - (void) setTaskProgressToIndeterminateAfterDelay:(BOOL)afterDelay; - (void) endTask; - (void) enableTaskCancellationWithTitle:(NSString *)buttonTitle callbackObject:(id)callbackObject callbackFunction:(SEL)callbackFunction; @@ -219,7 +219,7 @@ - (IBAction)copyCreateTableSyntaxFromSheet:(id)sender; // Other methods -- (void) setQueryMode:(int)theQueryMode; +- (void) setQueryMode:(NSInteger)theQueryMode; - (IBAction)closeSheet:(id)sender; - (IBAction)closeErrorConnectionSheet:(id)sender; - (IBAction)closePanelSheet:(id)sender; @@ -229,7 +229,7 @@ - (void)closeConnection; - (NSWindow *)getCreateTableSyntaxWindow; - (void)refreshCurrentDatabase; -- (void)saveConnectionPanelDidEnd:(NSSavePanel *)panel returnCode:(int)returnCode contextInfo:(void *)contextInfo; +- (void)saveConnectionPanelDidEnd:(NSSavePanel *)panel returnCode:(NSInteger)returnCode contextInfo:(void *)contextInfo; - (IBAction)validateSaveConnectionAccessory:(id)sender; - (BOOL)saveDocumentWithFilePath:(NSString *)fileName inBackground:(BOOL)saveInBackground onlyPreferences:(BOOL)saveOnlyPreferences; - (IBAction)closePasswordSheet:(id)sender; |