From 7f376ffdd7a5186b32a9c090d59a69d40a0141ae Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Fri, 8 May 2015 14:41:01 -0700 Subject: [PATCH] Replaced XXX tags with TODO. --- .../src/org/eclipse/cdt/internal/ui/editor/CEditor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/editor/CEditor.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/editor/CEditor.java index 5db88db568a..ffa6f353a0b 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/editor/CEditor.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/editor/CEditor.java @@ -338,7 +338,7 @@ public class CEditor extends TextEditor implements ICEditor, ISelectionChangedLi return; case QUICK_ASSIST: /* - * XXX: We can get rid of this once the SourceViewer has a way to update + * TODO: We can get rid of this once the SourceViewer has a way to update * the status line https://bugs.eclipse.org/bugs/show_bug.cgi?id=133787 */ msg= fQuickAssistAssistant.showPossibleQuickAssists(); @@ -860,7 +860,7 @@ public class CEditor extends TextEditor implements ICEditor, ISelectionChangedLi private class EditorSelectionChangedListener extends AbstractSelectionChangedListener { @Override public void selectionChanged(SelectionChangedEvent event) { - // XXX: see https://bugs.eclipse.org/bugs/show_bug.cgi?id=56161 + // TODO: see https://bugs.eclipse.org/bugs/show_bug.cgi?id=56161 CEditor.this.selectionChanged(); } }