Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] bug #28776

Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.ui/ChangeLog,v
retrieving revision 1.48
diff -u -r1.48 ChangeLog
--- ChangeLog	3 Jan 2003 17:41:17 -0000	1.48
+++ ChangeLog	7 Jan 2003 19:20:07 -0000
@@ -1,3 +1,13 @@
+2003-01-07 Alain Magloire
+
+	REMIND:More work needs to be done on the ContentAssist preferences
+	For example the autoactivation can not be a character but has to be
+	a string since we need: "." and "->"
+	To be revisited when we the story of the C/C++ Parser is clearer.
+	
+	* src/org/eclipse/cdt/internal/ui/preferences/CEditorPreferencePage (createContentAssistPage):
+	The addFieldText() for autoactivation is not a number.
+
 2003-01-02 Alain Magloire
 
 	* src/org/eclipse/cdt/internal/ui/text/BufferedDocumentScanner.java (setRange):
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.5
diff -u -r1.5 CEditorPreferencePage.java
--- src/org/eclipse/cdt/internal/ui/preferences/CEditorPreferencePage.java	11 Dec 2002 15:32:41 -0000	1.5
+++ src/org/eclipse/cdt/internal/ui/preferences/CEditorPreferencePage.java	7 Jan 2003 19:20:07 -0000
@@ -709,7 +709,7 @@
 		addTextField(contentAssistComposite, label, ContentAssistPreference.AUTOACTIVATION_DELAY, 4, 0, true);
 		
 		label= "Auto activation &triggers for C:";
-		addTextField(contentAssistComposite, label, ContentAssistPreference.AUTOACTIVATION_TRIGGERS_C, 25, 0, true);
+		addTextField(contentAssistComposite, label, ContentAssistPreference.AUTOACTIVATION_TRIGGERS_C, 25, 0, false);
 		
 		//label= "Auto activation triggers for &JavaDoc:";
 		//addTextField(contentAssistComposite, label, ContentAssistPreference.AUTOACTIVATION_TRIGGERS_JAVADOC, 25, 0);



Back to the top