Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkersten2005-11-08 00:06:12 +0000
committermkersten2005-11-08 00:06:12 +0000
commit76897ad39a1f58295723ec22036def3b41549c24 (patch)
tree85f216e07a8e487cc8ecf632080cd8320cca1c85
parent8a9458df9d80da2005a25eb8a4a24118bf1ceb43 (diff)
downloadorg.eclipse.mylyn.tasks-76897ad39a1f58295723ec22036def3b41549c24.tar.gz
org.eclipse.mylyn.tasks-76897ad39a1f58295723ec22036def3b41549c24.tar.xz
org.eclipse.mylyn.tasks-76897ad39a1f58295723ec22036def3b41549c24.zip
Minor UI improvements.
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/wizard/WizardProductPage.java9
1 files changed, 7 insertions, 2 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/wizard/WizardProductPage.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/wizard/WizardProductPage.java
index aab523636..a0e6030f0 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/wizard/WizardProductPage.java
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/wizard/WizardProductPage.java
@@ -43,6 +43,11 @@ import org.eclipse.ui.IWorkbench;
*/
public class WizardProductPage extends AbstractWizardListPage {
+ private static final String DESCRIPTION = "Pick a product on which to enter a bug.\n" +
+ "Press the Update button if you do not see the desired product.";
+
+ private static final String LABEL_UPDATE = "Update Options from Bugzilla Server";
+
/** The list of products to submit a bug report for */
static List<String> products = null;
@@ -62,7 +67,7 @@ public class WizardProductPage extends AbstractWizardListPage {
*/
public WizardProductPage(IWorkbench workbench, NewBugWizard bugWiz) {
super("Page1", "New Bug Report",
- "Pick a product on which to enter a bug.", workbench);
+ DESCRIPTION, workbench);
this.bugWizard = bugWiz;
}
@@ -72,7 +77,7 @@ public class WizardProductPage extends AbstractWizardListPage {
@Override
public void createAdditionalControls(Composite parent){
Button updateButton = new Button(parent, SWT.LEFT | SWT.PUSH);
- updateButton.setText("Update");
+ updateButton.setText(LABEL_UPDATE);
updateButton.setLayoutData(new GridData());

Back to the top