Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2012-04-23 17:33:18 +0000
committerEugene Tarassov2012-04-23 17:33:18 +0000
commitdd865529e84077324a5abca670748de6fbe20a8b (patch)
tree9185bbc2ed09b57bfc50b8373aa97dd2a7b058a6 /plugins
parentd527980655748450cddaec031395375b97eeb973 (diff)
downloadorg.eclipse.tcf-dd865529e84077324a5abca670748de6fbe20a8b.tar.gz
org.eclipse.tcf-dd865529e84077324a5abca670748de6fbe20a8b.tar.xz
org.eclipse.tcf-dd865529e84077324a5abca670748de6fbe20a8b.zip
Bug 377342 - Image leaks in arguments tab
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/launch/TCFArgumentsTab.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/launch/TCFArgumentsTab.java b/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/launch/TCFArgumentsTab.java
index e4d71c478..0e33be8ca 100644
--- a/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/launch/TCFArgumentsTab.java
+++ b/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/launch/TCFArgumentsTab.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others.
+ * Copyright (c) 2007, 2012 Wind River Systems, Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -157,6 +157,6 @@ public class TCFArgumentsTab extends AbstractLaunchConfigurationTab {
@Override
public Image getImage() {
- return ImageCache.getImageDescriptor(ImageCache.IMG_ARGUMENTS_TAB).createImage();
+ return ImageCache.getImage(ImageCache.IMG_ARGUMENTS_TAB);
}
}

Back to the top