diff options
author | drx777 <david.rekowski@gmx.de> | 2010-04-29 18:00:09 +0000 |
---|---|---|
committer | drx777 <david.rekowski@gmx.de> | 2010-04-29 18:00:09 +0000 |
commit | 47d42106c45d7663c05aaf6d3f0feab71798b51c (patch) | |
tree | 8d33140d9ed7713318bd4dcf1ec40c67fbceb385 /Source/SPTableCopy.m | |
parent | a980040e8546060e71166c363d2247407af12179 (diff) | |
download | sequelpro-47d42106c45d7663c05aaf6d3f0feab71798b51c.tar.gz sequelpro-47d42106c45d7663c05aaf6d3f0feab71798b51c.tar.bz2 sequelpro-47d42106c45d7663c05aaf6d3f0feab71798b51c.zip |
Added class SPDBActionCommons providing common functionality to all derived DatabaseActions classes, thus reducing code duplicates.
Diffstat (limited to 'Source/SPTableCopy.m')
-rw-r--r-- | Source/SPTableCopy.m | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/Source/SPTableCopy.m b/Source/SPTableCopy.m index f9bb159a..6a73bb20 100644 --- a/Source/SPTableCopy.m +++ b/Source/SPTableCopy.m @@ -22,17 +22,11 @@ // // More info at <http://code.google.com/p/sequel-pro/> -#import <MCPKit/MCPConnection.h> -#import "SPAlertSheets.h" -#import "SPStringAdditions.h" +#import "SPDBActionCommons.h" #import "SPTableCopy.h" -#import "Sequel-Pro.pch" @implementation SPTableCopy -@synthesize connection; -@synthesize parent; - - (NSObject *)getTableWindow { return [NSApp mainWindow]; } |