Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2008-04-25 04:02:24 +0000
committerspingel2008-04-25 04:02:24 +0000
commit49e3c8f8c8b7e2af32fe220624634b59c8224b04 (patch)
treeda9e37253a613d23a2d00cad837352f7be925229
parent3ba35a5ca3171d8bcc57f0ef72a2c9bf70b7d7b0 (diff)
downloadorg.eclipse.mylyn.tasks-49e3c8f8c8b7e2af32fe220624634b59c8224b04.tar.gz
org.eclipse.mylyn.tasks-49e3c8f8c8b7e2af32fe220624634b59c8224b04.tar.xz
org.eclipse.mylyn.tasks-49e3c8f8c8b7e2af32fe220624634b59c8224b04.zip
NEW - bug 226822: [api] generalize task data
https://bugs.eclipse.org/bugs/show_bug.cgi?id=226822
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/TaskEditor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/TaskEditor.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/TaskEditor.java
index c4522c912..94641af84 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/TaskEditor.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/TaskEditor.java
@@ -398,7 +398,7 @@ public class TaskEditor extends SharedHeaderFormEditor {
/**
* Update the title of the editor
*/
- // API 3.0 rename to setTitle()
+ @Deprecated
public void updateTitle(String name) {
// setContentDescription(name);
setPartName(name);

Back to the top