diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-02-15 10:16:13 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-02-15 10:16:13 +0000 |
commit | c64877be105019508234b9ee867d710de3b8160c (patch) | |
tree | 469ba2cace13daa4643d40934fcf43b9b78fe638 /Source/SPFieldMapperController.h | |
parent | e3d1b3567632352decc184d64b3e0fed82e11554 (diff) | |
download | sequelpro-c64877be105019508234b9ee867d710de3b8160c.tar.gz sequelpro-c64877be105019508234b9ee867d710de3b8160c.tar.bz2 sequelpro-c64877be105019508234b9ee867d710de3b8160c.zip |
• some further progress for the new csv import field mapper sheet
Diffstat (limited to 'Source/SPFieldMapperController.h')
-rw-r--r-- | Source/SPFieldMapperController.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/SPFieldMapperController.h b/Source/SPFieldMapperController.h index 67dc381d..d48585e0 100644 --- a/Source/SPFieldMapperController.h +++ b/Source/SPFieldMapperController.h @@ -31,7 +31,7 @@ IBOutlet id fieldMapperTableView; IBOutlet id tableTargetPopup; - IBOutlet id fileSourcePath; + IBOutlet NSPathControl *fileSourcePath; IBOutlet id importMethodPopup; IBOutlet id rowUpButton; IBOutlet id rowDownButton; @@ -42,13 +42,17 @@ NSInteger fieldMappingCurrentRow; NSArray *fieldMappingImportArray; NSArray *fieldMappingArray; + NSMutableArray *fieldMappingTableColumnNames; BOOL fieldMappingImportArrayIsPreview; MCPConnection *mySQLConnection; + NSString *sourcePath; } +@property(retain) NSString* sourcePath; + - (id)initWithDelegate:(id)managerDelegate; - (void)setConnection:(MCPConnection *)theConnection; |