aboutsummaryrefslogtreecommitdiffstats
path: root/TableDocument.m
diff options
context:
space:
mode:
authorabhibeckert <abhi@abhibeckert.com>2008-05-02 04:39:29 +0000
committerabhibeckert <abhi@abhibeckert.com>2008-05-02 04:39:29 +0000
commit816ff86cb16ed31319305803232dd4463b9e69e5 (patch)
treef2ab35c644a9d06fc47019b044235ac4db05a1e3 /TableDocument.m
parent276cef4346992083acfda3188cebbad986ec80f8 (diff)
downloadsequelpro-816ff86cb16ed31319305803232dd4463b9e69e5.tar.gz
sequelpro-816ff86cb16ed31319305803232dd4463b9e69e5.tar.bz2
sequelpro-816ff86cb16ed31319305803232dd4463b9e69e5.zip
new toolbar icons for 'switch too' items
added a 48px version of the logo for the connect sheet
Diffstat (limited to 'TableDocument.m')
-rw-r--r--TableDocument.m9
1 files changed, 4 insertions, 5 deletions
diff --git a/TableDocument.m b/TableDocument.m
index e8abc4fa..63d852af 100644
--- a/TableDocument.m
+++ b/TableDocument.m
@@ -1217,7 +1217,7 @@ passes the request to the tableDump object
[toolbarItem setPaletteLabel:NSLocalizedString(@"Table Structure", @"toolbar item label for switching to the Table Structure tab")];
//set up tooltip and image
[toolbarItem setToolTip:NSLocalizedString(@"Switch to the Table Structure tab", @"tooltip for toolbar item for switching to the Table Structure tab")];
- [toolbarItem setImage:[NSImage imageNamed:@"createtablesyntax"]];
+ [toolbarItem setImage:[NSImage imageNamed:@"toolbar-switch-to-structure"]];
//set up the target action
[toolbarItem setTarget:self];
[toolbarItem setAction:@selector(viewStructure:)];
@@ -1226,7 +1226,7 @@ passes the request to the tableDump object
[toolbarItem setPaletteLabel:NSLocalizedString(@"Table Content", @"toolbar item label for switching to the Table Content tab")];
//set up tooltip and image
[toolbarItem setToolTip:NSLocalizedString(@"Switch to the Table Content tab", @"tooltip for toolbar item for switching to the Table Content tab")];
- [toolbarItem setImage:[NSImage imageNamed:@"createtablesyntax"]];
+ [toolbarItem setImage:[NSImage imageNamed:@"toolbar-switch-to-browse"]];
//set up the target action
[toolbarItem setTarget:self];
[toolbarItem setAction:@selector(viewContent:)];
@@ -1235,7 +1235,7 @@ passes the request to the tableDump object
[toolbarItem setPaletteLabel:NSLocalizedString(@"Run Query", @"toolbar item label for switching to the Run Query tab")];
//set up tooltip and image
[toolbarItem setToolTip:NSLocalizedString(@"Switch to the Run Query tab", @"tooltip for toolbar item for switching to the Run Query tab")];
- [toolbarItem setImage:[NSImage imageNamed:@"createtablesyntax"]];
+ [toolbarItem setImage:[NSImage imageNamed:@"toolbar-switch-to-sql"]];
//set up the target action
[toolbarItem setTarget:self];
[toolbarItem setAction:@selector(viewQuery:)];
@@ -1244,7 +1244,7 @@ passes the request to the tableDump object
[toolbarItem setPaletteLabel:NSLocalizedString(@"Table Status", @"toolbar item label for switching to the Table Status tab")];
//set up tooltip and image
[toolbarItem setToolTip:NSLocalizedString(@"Switch to the Table Status tab", @"tooltip for toolbar item for switching to the Table Status tab")];
- [toolbarItem setImage:[NSImage imageNamed:@"createtablesyntax"]];
+ [toolbarItem setImage:[NSImage imageNamed:@"toolbar-switch-to-table-info"]];
//set up the target action
[toolbarItem setTarget:self];
[toolbarItem setAction:@selector(viewStatus:)];
@@ -1289,7 +1289,6 @@ passes the request to the tableDump object
@"SwitchToTableStructureToolbarItemIdentifier",
@"SwitchToTableContentToolbarItemIdentifier",
@"SwitchToRunQueryToolbarItemIdentifier",
- @"SwitchToTableStatusToolbarItemIdentifier",
nil];
}