1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

Replaced XXX tags with TODO.

This commit is contained in:
Sergey Prigogin 2015-05-08 14:41:01 -07:00
parent ef33d0d299
commit 7f376ffdd7

View file

@ -338,7 +338,7 @@ public class CEditor extends TextEditor implements ICEditor, ISelectionChangedLi
return; return;
case QUICK_ASSIST: 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 * the status line https://bugs.eclipse.org/bugs/show_bug.cgi?id=133787
*/ */
msg= fQuickAssistAssistant.showPossibleQuickAssists(); msg= fQuickAssistAssistant.showPossibleQuickAssists();
@ -860,7 +860,7 @@ public class CEditor extends TextEditor implements ICEditor, ISelectionChangedLi
private class EditorSelectionChangedListener extends AbstractSelectionChangedListener { private class EditorSelectionChangedListener extends AbstractSelectionChangedListener {
@Override @Override
public void selectionChanged(SelectionChangedEvent event) { 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(); CEditor.this.selectionChanged();
} }
} }