Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Becker2012-03-24 19:50:12 +0000
committerFrank Becker2012-03-24 19:50:12 +0000
commit2d50aaa6ef751e881182be166de5b408167a8e90 (patch)
tree3399c46e44d8498d3f282daf554dabe132e1f529
parent762a8bb616a15e9ef5490b37b479d3388077d8ac (diff)
downloadorg.eclipse.mylyn.tasks-2d50aaa6ef751e881182be166de5b408167a8e90.tar.gz
org.eclipse.mylyn.tasks-2d50aaa6ef751e881182be166de5b408167a8e90.tar.xz
org.eclipse.mylyn.tasks-2d50aaa6ef751e881182be166de5b408167a8e90.zip
Revert "ASSIGNED - bug 375208: "Task has incoming changes" should run SynchronizeEditorAction() and not refresh() https://bugs.eclipse.org/bugs/show_bug.cgi?id=375208"
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/AbstractTaskEditorPage.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/AbstractTaskEditorPage.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/AbstractTaskEditorPage.java
index bccb6469b..9ba55ab8e 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/AbstractTaskEditorPage.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/AbstractTaskEditorPage.java
@@ -314,9 +314,7 @@ public abstract class AbstractTaskEditorPage extends TaskFormPage implements ISe
IMessageProvider.WARNING, new HyperlinkAdapter() {
@Override
public void linkActivated(HyperlinkEvent e) {
- SynchronizeEditorAction action = new SynchronizeEditorAction();
- action.selectionChanged(new StructuredSelection(getEditor()));
- action.run();
+ AbstractTaskEditorPage.this.refresh();
}
});
setSubmitEnabled(false);

Back to the top