diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-11-19 00:26:57 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-11-19 00:26:57 +0000 |
commit | ad92dcb5b130b6543db0b85c322984f521c9ad0c (patch) | |
tree | a9c89ee28e71f8abd2a613bdeef5ffebd7d7e4ef /Source/SPCopyTable.m | |
parent | 3f11234f767748cefc04ec42de6008954359b19d (diff) | |
download | sequelpro-ad92dcb5b130b6543db0b85c322984f521c9ad0c.tar.gz sequelpro-ad92dcb5b130b6543db0b85c322984f521c9ad0c.tar.bz2 sequelpro-ad92dcb5b130b6543db0b85c322984f521c9ad0c.zip |
• fixed tiny issues for Bundle Editor
• fixed selector name in CopyTable for Bundle Editor input action
Diffstat (limited to 'Source/SPCopyTable.m')
-rw-r--r-- | Source/SPCopyTable.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPCopyTable.m b/Source/SPCopyTable.m index c54e0cee..045d7856 100644 --- a/Source/SPCopyTable.m +++ b/Source/SPCopyTable.m @@ -864,7 +864,7 @@ NSInteger MENU_EDIT_COPY_AS_SQL = 2003; input = [self rowsAsCsvStringWithHeaders:YES onlySelectedRows:YES]; } else if([inputAction isEqualToString:SPBundleInputSourceSelectedTableRowsAsSqlInsert]) { - input = [self selectedRowsAsSqlInsertsOnlySelectedRows:YES]; + input = [self rowsAsSqlInsertsOnlySelectedRows:YES]; } else if([inputAction isEqualToString:SPBundleInputSourceTableRowsAsTab]) { input = [self rowsAsTabStringWithHeaders:YES onlySelectedRows:NO]; |