# HG changeset patch # User Peter Hofer # Date 1309794247 -7200 # Node ID 33794640fc148a4f30e78638d6ffbad40435000d # Parent 051958d4c24df11a0a35514eb1b71109fd98b4ff IdealGraphVisualizer: use newer, more modern icons from the NetBeans project diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/BytecodeNode.java --- a/src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/BytecodeNode.java Mon Jul 04 16:08:03 2011 +0200 +++ b/src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/BytecodeNode.java Mon Jul 04 17:44:07 2011 +0200 @@ -69,9 +69,9 @@ @Override public Image getIcon(int i) { if (nodes != null) { - return ImageUtilities.loadImage("com/sun/hotspot/igv/bytecodes/images/link.gif"); + return ImageUtilities.loadImage("com/sun/hotspot/igv/bytecodes/images/link.png"); } else { - return ImageUtilities.loadImage("com/sun/hotspot/igv/bytecodes/images/bytecode.gif"); + return ImageUtilities.loadImage("com/sun/hotspot/igv/bytecodes/images/bytecode.png"); } } diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/MethodNode.java --- a/src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/MethodNode.java Mon Jul 04 16:08:03 2011 +0200 +++ b/src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/MethodNode.java Mon Jul 04 17:44:07 2011 +0200 @@ -82,7 +82,7 @@ @Override public Image getIcon(int i) { - return ImageUtilities.loadImage("com/sun/hotspot/igv/bytecodes/images/method.gif"); + return ImageUtilities.loadImage("com/sun/hotspot/igv/bytecodes/images/method.png"); } @Override diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/images/bytecode.gif Binary file src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/images/bytecode.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/images/bytecode.png Binary file src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/images/bytecode.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/images/link.gif Binary file src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/images/link.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/images/link.png Binary file src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/images/link.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/images/method.gif Binary file src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/images/method.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/images/method.png Binary file src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/images/method.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/FolderNode.java --- a/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/FolderNode.java Mon Jul 04 16:08:03 2011 +0200 +++ b/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/FolderNode.java Mon Jul 04 17:44:07 2011 +0200 @@ -115,7 +115,7 @@ @Override public Image getIcon(int i) { - return ImageUtilities.loadImage("com/sun/hotspot/igv/coordinator/images/folder.gif"); + return ImageUtilities.loadImage("com/sun/hotspot/igv/coordinator/images/folder.png"); } protected FolderNode(GraphDocument document, String name, GroupOrganizer organizer, List subFolders, List groups) { diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/GraphNode.java --- a/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/GraphNode.java Mon Jul 04 16:08:03 2011 +0200 +++ b/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/GraphNode.java Mon Jul 04 17:44:07 2011 +0200 @@ -98,7 +98,7 @@ @Override public Image getIcon(int i) { - return ImageUtilities.loadImage("com/sun/hotspot/igv/coordinator/images/graph.gif"); + return ImageUtilities.loadImage("com/sun/hotspot/igv/coordinator/images/graph.png"); } @Override diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/DiffGraphAction.java --- a/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/DiffGraphAction.java Mon Jul 04 16:08:03 2011 +0200 +++ b/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/DiffGraphAction.java Mon Jul 04 17:44:07 2011 +0200 @@ -70,7 +70,7 @@ @Override protected String iconResource() { - return "com/sun/hotspot/igv/coordinator/images/diff.gif"; + return "com/sun/hotspot/igv/coordinator/images/diff.png"; } public HelpCtx getHelpCtx() { diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/ImportAction.java --- a/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/ImportAction.java Mon Jul 04 16:08:03 2011 +0200 +++ b/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/ImportAction.java Mon Jul 04 17:44:07 2011 +0200 @@ -161,7 +161,7 @@ @Override protected String iconResource() { - return "com/sun/hotspot/igv/coordinator/images/import.gif"; + return "com/sun/hotspot/igv/coordinator/images/import.png"; } public HelpCtx getHelpCtx() { diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/RemoveAction.java --- a/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/RemoveAction.java Mon Jul 04 16:08:03 2011 +0200 +++ b/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/RemoveAction.java Mon Jul 04 17:44:07 2011 +0200 @@ -55,7 +55,7 @@ @Override protected String iconResource() { - return "com/sun/hotspot/igv/coordinator/images/remove.gif"; + return "com/sun/hotspot/igv/coordinator/images/remove.png"; } public HelpCtx getHelpCtx() { diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/RemoveAllAction.java --- a/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/RemoveAllAction.java Mon Jul 04 16:08:03 2011 +0200 +++ b/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/RemoveAllAction.java Mon Jul 04 17:44:07 2011 +0200 @@ -51,7 +51,7 @@ @Override protected String iconResource() { - return "com/sun/hotspot/igv/coordinator/images/removeall.gif"; + return "com/sun/hotspot/igv/coordinator/images/removeall.png"; } public HelpCtx getHelpCtx() { diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/SaveAsAction.java --- a/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/SaveAsAction.java Mon Jul 04 16:08:03 2011 +0200 +++ b/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/SaveAsAction.java Mon Jul 04 17:44:07 2011 +0200 @@ -98,7 +98,7 @@ @Override protected String iconResource() { - return "com/sun/hotspot/igv/coordinator/images/save.gif"; + return "com/sun/hotspot/igv/coordinator/images/save.png"; } public HelpCtx getHelpCtx() { diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/StructuredViewAction.java --- a/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/StructuredViewAction.java Mon Jul 04 16:08:03 2011 +0200 +++ b/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/StructuredViewAction.java Mon Jul 04 17:44:07 2011 +0200 @@ -71,7 +71,7 @@ @Override public Component getToolbarPresenter() { - Image iconImage = ImageUtilities.loadImage("com/sun/hotspot/igv/coordinator/images/structure.gif"); + Image iconImage = ImageUtilities.loadImage("com/sun/hotspot/igv/coordinator/images/structure.png"); ImageIcon icon = new ImageIcon(iconImage); popup = new JPopupMenu(); diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/diff.gif Binary file src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/diff.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/diff.png Binary file src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/diff.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/folder.gif Binary file src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/folder.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/folder.png Binary file src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/folder.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/graph.gif Binary file src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/graph.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/graph.png Binary file src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/graph.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/import.gif Binary file src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/import.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/import.png Binary file src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/import.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/remove.gif Binary file src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/remove.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/remove.png Binary file src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/remove.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/removeall.gif Binary file src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/removeall.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/removeall.png Binary file src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/removeall.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/save.gif Binary file src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/save.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/save.png Binary file src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/save.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/saveall.gif Binary file src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/saveall.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/structure.gif Binary file src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/structure.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/structure.png Binary file src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/images/structure.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/actions/MoveFilterDownAction.java --- a/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/actions/MoveFilterDownAction.java Mon Jul 04 16:08:03 2011 +0200 +++ b/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/actions/MoveFilterDownAction.java Mon Jul 04 17:44:07 2011 +0200 @@ -65,7 +65,7 @@ @Override protected String iconResource() { - return "com/sun/hotspot/igv/filterwindow/images/down.gif"; + return "com/sun/hotspot/igv/filterwindow/images/down.png"; } @Override diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/actions/MoveFilterUpAction.java --- a/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/actions/MoveFilterUpAction.java Mon Jul 04 16:08:03 2011 +0200 +++ b/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/actions/MoveFilterUpAction.java Mon Jul 04 17:44:07 2011 +0200 @@ -64,7 +64,7 @@ @Override protected String iconResource() { - return "com/sun/hotspot/igv/filterwindow/images/up.gif"; + return "com/sun/hotspot/igv/filterwindow/images/up.png"; } @Override diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/actions/NewFilterAction.java --- a/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/actions/NewFilterAction.java Mon Jul 04 16:08:03 2011 +0200 +++ b/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/actions/NewFilterAction.java Mon Jul 04 17:44:07 2011 +0200 @@ -63,6 +63,6 @@ @Override protected String iconResource() { - return "com/sun/hotspot/igv/filterwindow/images/plus.gif"; + return "com/sun/hotspot/igv/filterwindow/images/plus.png"; } } diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/actions/RemoveFilterAction.java --- a/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/actions/RemoveFilterAction.java Mon Jul 04 16:08:03 2011 +0200 +++ b/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/actions/RemoveFilterAction.java Mon Jul 04 17:44:07 2011 +0200 @@ -85,7 +85,7 @@ @Override protected String iconResource() { - return "com/sun/hotspot/igv/filterwindow/images/minus.gif"; + return "com/sun/hotspot/igv/filterwindow/images/minus.png"; } public HelpCtx getHelpCtx() { diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/actions/RemoveFilterSettingsAction.java --- a/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/actions/RemoveFilterSettingsAction.java Mon Jul 04 16:08:03 2011 +0200 +++ b/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/actions/RemoveFilterSettingsAction.java Mon Jul 04 17:44:07 2011 +0200 @@ -63,6 +63,6 @@ @Override protected String iconResource() { - return "com/sun/hotspot/igv/filterwindow/images/delete.gif"; + return "com/sun/hotspot/igv/filterwindow/images/delete.png"; } } diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/actions/SaveFilterSettingsAction.java --- a/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/actions/SaveFilterSettingsAction.java Mon Jul 04 16:08:03 2011 +0200 +++ b/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/actions/SaveFilterSettingsAction.java Mon Jul 04 17:44:07 2011 +0200 @@ -63,6 +63,6 @@ @Override protected String iconResource() { - return "com/sun/hotspot/igv/filterwindow/images/add.gif"; + return "com/sun/hotspot/igv/filterwindow/images/add.png"; } } diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/add.gif Binary file src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/add.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/add.png Binary file src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/add.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/delete.gif Binary file src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/delete.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/delete.png Binary file src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/delete.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/down.gif Binary file src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/down.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/down.png Binary file src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/down.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/minus.gif Binary file src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/minus.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/minus.png Binary file src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/minus.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/plus.gif Binary file src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/plus.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/plus.png Binary file src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/plus.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/up.gif Binary file src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/up.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/up.png Binary file src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/images/up.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/ExportAction.java --- a/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/ExportAction.java Mon Jul 04 16:08:03 2011 +0200 +++ b/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/ExportAction.java Mon Jul 04 17:44:07 2011 +0200 @@ -103,7 +103,7 @@ @Override protected String iconResource() { - return "com/sun/hotspot/igv/view/images/export.gif"; + return "com/sun/hotspot/igv/view/images/export.png"; } public HelpCtx getHelpCtx() { diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/OverviewAction.java --- a/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/OverviewAction.java Mon Jul 04 16:08:03 2011 +0200 +++ b/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/OverviewAction.java Mon Jul 04 17:44:07 2011 +0200 @@ -54,6 +54,6 @@ } protected String iconResource() { - return "com/sun/hotspot/igv/view/images/overview.gif"; + return "com/sun/hotspot/igv/view/images/overview.png"; } } diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/ZoomInAction.java --- a/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/ZoomInAction.java Mon Jul 04 16:08:03 2011 +0200 +++ b/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/ZoomInAction.java Mon Jul 04 17:44:07 2011 +0200 @@ -64,6 +64,6 @@ @Override protected String iconResource() { - return "com/sun/hotspot/igv/view/images/zoomin.gif"; + return "com/sun/hotspot/igv/view/images/zoom_in.png"; } } diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/ZoomOutAction.java --- a/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/ZoomOutAction.java Mon Jul 04 16:08:03 2011 +0200 +++ b/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/ZoomOutAction.java Mon Jul 04 17:44:07 2011 +0200 @@ -70,6 +70,6 @@ @Override protected String iconResource() { - return "com/sun/hotspot/igv/view/images/zoomout.gif"; + return "com/sun/hotspot/igv/view/images/zoom_out.png"; } } diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/images/export.gif Binary file src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/images/export.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/images/export.png Binary file src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/images/export.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/images/overview.gif Binary file src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/images/overview.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/images/overview.png Binary file src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/images/overview.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/images/search.gif Binary file src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/images/search.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/images/zoom_in.png Binary file src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/images/zoom_in.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/images/zoom_out.png Binary file src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/images/zoom_out.png has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/images/zoomin.gif Binary file src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/images/zoomin.gif has changed diff -r 051958d4c24d -r 33794640fc14 src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/images/zoomout.gif Binary file src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/images/zoomout.gif has changed