Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkersten2005-10-21 17:48:54 +0000
committermkersten2005-10-21 17:48:54 +0000
commit06665ac5e015c3b49a71e0157ac5d498332d7ffe (patch)
tree90757a91e3f53ecfe7762fd237d86f3a6a5b897a
parent4cd89190994055eb826688136daa47b2c8ab53fc (diff)
downloadorg.eclipse.mylyn.tasks-06665ac5e015c3b49a71e0157ac5d498332d7ffe.tar.gz
org.eclipse.mylyn.tasks-06665ac5e015c3b49a71e0157ac5d498332d7ffe.tar.xz
org.eclipse.mylyn.tasks-06665ac5e015c3b49a71e0157ac5d498332d7ffe.zip
Patch for Bugzilla Bug 111023: create one-to-one association tasks hyperlinks
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasklist/ui/views/TaskInputDialog.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasklist/ui/views/TaskInputDialog.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasklist/ui/views/TaskInputDialog.java
index 95ffd90c6..c2c9d9903 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasklist/ui/views/TaskInputDialog.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasklist/ui/views/TaskInputDialog.java
@@ -34,6 +34,8 @@ import org.eclipse.swt.widgets.Text;
*/
public class TaskInputDialog extends Dialog {
+ private static final String LABEL_SHELL = "New Task";
+ private static final String LABEL_DESCRIPTION = "Description:";
private String taskName = "";
private String priority = "P3";
private String url = "http://";
@@ -56,7 +58,7 @@ public class TaskInputDialog extends Dialog {
composite.setLayoutData(data);
Label taskNameLabel = new Label(composite, SWT.WRAP);
- taskNameLabel.setText("Task Name:");
+ taskNameLabel.setText(LABEL_DESCRIPTION);
taskNameLabel.setFont(parent.getFont());
taskNameTextWidget = new Text(composite, SWT.SINGLE | SWT.BORDER);
@@ -131,7 +133,7 @@ public class TaskInputDialog extends Dialog {
protected void configureShell(Shell shell) {
super.configureShell(shell);
- shell.setText("Enter Task Information");
+ shell.setText(LABEL_SHELL);
}
}

Back to the top