diff options
author | stuconnolly <stuart02@gmail.com> | 2010-08-13 16:48:59 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-08-13 16:48:59 +0000 |
commit | f1e829f98f50d9e75e7ba111361a625f7aab802d (patch) | |
tree | 930c14091b0cba5d4c44ec1e4fc70c34f55c56fe /Source/SPDBActionCommons.h | |
parent | efdcfb17f87863fef42f209f72eb4c4ccd888d35 (diff) | |
download | sequelpro-f1e829f98f50d9e75e7ba111361a625f7aab802d.tar.gz sequelpro-f1e829f98f50d9e75e7ba111361a625f7aab802d.tar.bz2 sequelpro-f1e829f98f50d9e75e7ba111361a625f7aab802d.zip |
Tidy up database renaming and copying by removing the use of alert dialogs within loops to prevent locking up the main thread. These operations ideally should also be threaded.
Diffstat (limited to 'Source/SPDBActionCommons.h')
-rw-r--r-- | Source/SPDBActionCommons.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/SPDBActionCommons.h b/Source/SPDBActionCommons.h index 1b7185bd..6ff6e11c 100644 --- a/Source/SPDBActionCommons.h +++ b/Source/SPDBActionCommons.h @@ -23,7 +23,6 @@ // More info at <http://code.google.com/p/sequel-pro/> #import <MCPKit/MCPKit.h> -#import "SPAlertSheets.h" @interface SPDBActionCommons : NSObject { @@ -32,12 +31,12 @@ } /** - * @property MCPConnection references the MCPKit connection to MySQL; it has to be set. + * @property connection References the MCPKit connection to MySQL; it has to be set. */ @property (retain) MCPConnection *connection; /** - * @property the NSWindow instance to send message sheets to + * @property messageWindow The NSWindow instance to send message sheets to. */ @property (assign) NSWindow *messageWindow; |