Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-patch] Refresh icons for cdt.launch

done

David Daoust wrote:


Here are the updates for the org.eclipse.cdt.launch package. Please remove the existing icons directory first.

http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/cdt-home/developer/featurespec/3.0/IconRefresh.html?cvsroot=Tools_Project


        - Dave


------------------------------------------------------------------------

Index: plugin.xml
===================================================================
RCS file: /home/tools/org.eclipse.cdt-launch/org.eclipse.cdt.launch/plugin.xml,v
retrieving revision 1.31
diff -u -r1.31 plugin.xml
--- plugin.xml	22 Dec 2004 19:48:53 -0000	1.31
+++ plugin.xml	7 Apr 2005 14:37:38 -0000
@@ -56,17 +56,17 @@
    <extension
          point="org.eclipse.debug.ui.launchConfigurationTypeImages">
       <launchConfigurationTypeImage
-            icon="icons/c_app.gif"
+            icon="icons/obj16/c_app.gif"
             configTypeID="org.eclipse.cdt.launch.localCLaunch"
             id="org.eclipse.cdt.launch.localRunLaunchImage">
       </launchConfigurationTypeImage>
       <launchConfigurationTypeImage
-            icon="icons/c_app.gif"
+            icon="icons/obj16/c_app.gif"
             configTypeID="org.eclipse.cdt.launch.localAttachCLaunch"
             id="org.eclipse.cdt.launch.localAttachLaunchImage">
       </launchConfigurationTypeImage>
       <launchConfigurationTypeImage
-            icon="icons/c_app.gif"
+            icon="icons/obj16/c_app.gif"
             configTypeID="org.eclipse.cdt.launch.coreFileCLaunch"
             id="org.eclipse.cdt.launch.coreFileLaunchImage">
       </launchConfigurationTypeImage>
@@ -93,7 +93,7 @@
          point="org.eclipse.debug.ui.launchShortcuts">
       <shortcut
             label="%CApplicationShortcut.label"
-            icon="icons/c_app.gif"
+            icon="icons/obj16/c_app.gif"
             modes="run, debug"
             class="org.eclipse.cdt.launch.internal.CApplicationLaunchShortcut"
             id="org.eclipse.cdt.debug.ui.localCShortcut">
Index: icons/obj16/exec_obj.gif
===================================================================
RCS file: /home/tools/org.eclipse.cdt-launch/org.eclipse.cdt.launch/icons/obj16/exec_obj.gif,v
retrieving revision 1.1
diff -u -r1.1 exec_obj.gif
Binary files /tmp/cvs.HhXjI7 and exec_obj.gif differ
Index: src/org/eclipse/cdt/launch/internal/ui/LaunchImages.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt-launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/internal/ui/LaunchImages.java,v
retrieving revision 1.7
diff -u -r1.7 LaunchImages.java
--- src/org/eclipse/cdt/launch/internal/ui/LaunchImages.java	10 Jun 2004 15:15:51 -0000	1.7
+++ src/org/eclipse/cdt/launch/internal/ui/LaunchImages.java	7 Apr 2005 14:37:38 -0000
@@ -32,7 +32,7 @@
 		fgIconBaseURL= Platform.getBundle(LaunchUIPlugin.getUniqueIdentifier()).getEntry("/icons/"); //$NON-NLS-1$
 	}	
- private static final String T_TABS = "tabs/"; //$NON-NLS-1$
+	private static final String T_TABS = "view16/"; //$NON-NLS-1$
 	private static final String T_OBJS = "obj16/"; //$NON-NLS-1$
public static String IMG_VIEW_MAIN_TAB = NAME_PREFIX + "main_tab.gif"; //$NON-NLS-1$


------------------------------------------------------------------------

_______________________________________________
cdt-patch mailing list
cdt-patch@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/cdt-patch


Back to the top