diff options
Diffstat (limited to 'Source/SPTextView.m')
-rw-r--r-- | Source/SPTextView.m | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/Source/SPTextView.m b/Source/SPTextView.m index 137ff021..a1b80ab4 100644 --- a/Source/SPTextView.m +++ b/Source/SPTextView.m @@ -33,10 +33,14 @@ #import "SPNavigatorController.h" #import "SPAlertSheets.h" #import "RegexKitLite.h" +#ifndef SP_REFACTOR /* headers */ #import "SPBundleHTMLOutputController.h" +#endif #import "SPDatabaseViewController.h" +#ifndef SP_REFACTOR /* headers */ #import "SPAppController.h" -#import "SPMySQL.h" +#endif +#import <SPMySQL/SPMySQL.h> #import "SPDatabaseStructure.h" #pragma mark - @@ -105,6 +109,13 @@ static inline NSPoint SPPointOnLine(NSPoint a, NSPoint b, CGFloat t) { return NS @synthesize completionIsOpen; @synthesize completionWasReinvokedAutomatically; +#ifdef SP_REFACTOR +@synthesize tableDocumentInstance; +@synthesize tablesListInstance; +@synthesize customQueryInstance; +@synthesize mySQLConnection; +#endif + /** * Sort function (mainly used to sort the words in the textView) */ |