diff options
author | abhibeckert <abhi@abhibeckert.com> | 2008-05-02 04:39:29 +0000 |
---|---|---|
committer | abhibeckert <abhi@abhibeckert.com> | 2008-05-02 04:39:29 +0000 |
commit | 816ff86cb16ed31319305803232dd4463b9e69e5 (patch) | |
tree | f2ab35c644a9d06fc47019b044235ac4db05a1e3 /TableDocument.m | |
parent | 276cef4346992083acfda3188cebbad986ec80f8 (diff) | |
download | sequelpro-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.m | 9 |
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]; } |