Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrelves2007-02-16 20:24:15 +0000
committerrelves2007-02-16 20:24:15 +0000
commit6363bc23d72634e459b5b5a12d7b048eff928f1d (patch)
treebf09f4b4da57ed8882fb01c7352bcf3e93fbf673 /org.eclipse.mylyn.bugzilla.ui
parent3e1ddadf84b13bec556d964987715abf1fce3947 (diff)
downloadorg.eclipse.mylyn.tasks-6363bc23d72634e459b5b5a12d7b048eff928f1d.tar.gz
org.eclipse.mylyn.tasks-6363bc23d72634e459b5b5a12d7b048eff928f1d.tar.xz
org.eclipse.mylyn.tasks-6363bc23d72634e459b5b5a12d7b048eff928f1d.zip
NEW - bug 166555: Bugs with QA contacts cannot be updated when using "local users"
https://bugs.eclipse.org/bugs/show_bug.cgi?id=166555
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.ui')
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/tasklist/BugzillaRepositorySettingsPage.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/tasklist/BugzillaRepositorySettingsPage.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/tasklist/BugzillaRepositorySettingsPage.java
index a9797e397..b23d42c50 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/tasklist/BugzillaRepositorySettingsPage.java
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/tasklist/BugzillaRepositorySettingsPage.java
@@ -51,6 +51,8 @@ import org.eclipse.swt.widgets.Label;
*/
public class BugzillaRepositorySettingsPage extends AbstractRepositorySettingsPage {
+ private static final String LABEL_SHORT_LOGINS = "Local users enabled:";
+
public static final String LABEL_AUTOMATIC_VERSION = "Automatic (Use Validate Settings)";
private static final String TITLE = "Bugzilla Repository Settings";
@@ -128,7 +130,7 @@ public class BugzillaRepositorySettingsPage extends AbstractRepositorySettingsPa
boolean shortLogin = Boolean.parseBoolean(repository.getProperty(IBugzillaConstants.REPOSITORY_SETTING_SHORT_LOGIN));
Label shortLoginLabel = new Label(parent, SWT.NONE);
- shortLoginLabel.setText("Short logins enabled on repository:");
+ shortLoginLabel.setText(LABEL_SHORT_LOGINS);
cleanQAContact = new Button(parent, SWT.CHECK | SWT.LEFT);
cleanQAContact.setSelection(shortLogin);

Back to the top