Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrelves2006-11-09 21:22:13 +0000
committerrelves2006-11-09 21:22:13 +0000
commit45bf88db930c774869f0da2719114ec18147df23 (patch)
tree552878ce125acdd58fb0ca5fdbbd50a847479a9b /org.eclipse.mylyn.bugzilla.core/src/org/eclipse
parent113f6109d08f8e04228a225187c9c45fa669728f (diff)
downloadorg.eclipse.mylyn.tasks-45bf88db930c774869f0da2719114ec18147df23.tar.gz
org.eclipse.mylyn.tasks-45bf88db930c774869f0da2719114ec18147df23.tar.xz
org.eclipse.mylyn.tasks-45bf88db930c774869f0da2719114ec18147df23.zip
NEW - bug 161929: Weird task editor labels in File menu
https://bugs.eclipse.org/bugs/show_bug.cgi?id=161929
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.core/src/org/eclipse')
-rw-r--r--org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/NewBugzillaReport.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/NewBugzillaReport.java b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/NewBugzillaReport.java
index 009cdd0df..9f5e3220c 100644
--- a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/NewBugzillaReport.java
+++ b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/NewBugzillaReport.java
@@ -60,7 +60,7 @@ public class NewBugzillaReport extends RepositoryTaskData implements Serializabl
}
public String getLabel() {
- return "New Bug #" + getId();
+ return "<unsubmitted> "+ this.getRepositoryUrl();
}
public String getDescription() {

Back to the top