Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergey Prigogin2015-05-08 21:41:01 +0000
committerSergey Prigogin2015-05-08 21:41:01 +0000
commit7f376ffdd7a5186b32a9c090d59a69d40a0141ae (patch)
treee4e4e7a317988ec76a3395866916f6eced3f8776
parentef33d0d2999f0df9e3beafe1a4ed3a9afe0a1747 (diff)
downloadorg.eclipse.cdt-7f376ffdd7a5186b32a9c090d59a69d40a0141ae.tar.gz
org.eclipse.cdt-7f376ffdd7a5186b32a9c090d59a69d40a0141ae.tar.xz
org.eclipse.cdt-7f376ffdd7a5186b32a9c090d59a69d40a0141ae.zip
Replaced XXX tags with TODO.
-rw-r--r--core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/editor/CEditor.java4
1 files 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();
}
}

Back to the top