Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Added new Help Ids

Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.ui/ChangeLog,v
retrieving revision 1.188
diff -u -r1.188 ChangeLog
--- ChangeLog	24 Sep 2003 15:07:43 -0000	1.188
+++ ChangeLog	25 Sep 2003 14:05:37 -0000
@@ -1,3 +1,10 @@
+2003-09-25 Alain Magloire
+
+	Add HelpContext IDs in the preference page.
+	For annotation page and color Page
+
+	* src/org/eclipse/cdt/internal/ui/CEditorPreferencePage.java
+
 2003-09-24 Alain Magloire
 
 	Remove of unuse function with the clean up of Translation Unit
Index: src/org/eclipse/cdt/internal/ui/ICHelpContextIds.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/ICHelpContextIds.java,v
retrieving revision 1.9
diff -u -r1.9 ICHelpContextIds.java
--- src/org/eclipse/cdt/internal/ui/ICHelpContextIds.java	23 Sep 2003 14:40:12 -0000	1.9
+++ src/org/eclipse/cdt/internal/ui/ICHelpContextIds.java	25 Sep 2003 14:05:38 -0000
@@ -1,6 +1,6 @@
 package org.eclipse.cdt.internal.ui;
 
-import org.eclipse.cdt.ui.*;
+import org.eclipse.cdt.ui.CUIPlugin;
 
 /*
  * (c) Copyright IBM Corp. 2000, 2001.
@@ -32,6 +32,8 @@
 	// Preference/property pages
 	public static final String C_PREF_PAGE= PREFIX + "new_c_pref_page_context";
 	public static final String C_EDITOR_PREF_PAGE= PREFIX + "new_c_editor_pref_page_context";
+	public static final String C_EDITOR_ANNOTATIONS_PREF_PAGE= PREFIX + "new_c_editor_annotations_pref_page_context";
+	public static final String C_EDITOR_COLORS_PREF_PAGE= PREFIX + "new_c_editor_colors_pref_page_context";
 	public static final String TEMPLATE_PREFERENCE_PAGE= PREFIX + "new_c_templates_pref_page_context";
 	public static final String LAUNCH_PROPERTY_PAGE= PREFIX + "new_launch_property_page_context";
 	public static final String PROJECT_PROPERTY_PAGE= PREFIX + "new_project_property_page_context";
Index: src/org/eclipse/cdt/internal/ui/preferences/CEditorPreferencePage.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/preferences/CEditorPreferencePage.java,v
retrieving revision 1.12
diff -u -r1.12 CEditorPreferencePage.java
--- src/org/eclipse/cdt/internal/ui/preferences/CEditorPreferencePage.java	23 Sep 2003 20:46:22 -0000	1.12
+++ src/org/eclipse/cdt/internal/ui/preferences/CEditorPreferencePage.java	25 Sep 2003 14:05:39 -0000
@@ -472,6 +472,7 @@
 			}
 		});
 
+		WorkbenchHelp.setHelp(composite, ICHelpContextIds.C_EDITOR_ANNOTATIONS_PREF_PAGE);	
 		return composite;
 	}
 
@@ -654,6 +655,7 @@
 			}
 		});
 
+		WorkbenchHelp.setHelp(parent, ICHelpContextIds.C_EDITOR_COLORS_PREF_PAGE);	
 		return colorComposite;
 	}
 



Back to the top