Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkersten2007-06-25 23:48:34 +0000
committermkersten2007-06-25 23:48:34 +0000
commita4d1a12a18c05c94c86292c7357d704b41a3d39b (patch)
treebe2fab47900a5ee0233bf15be82d6088bb38bfd9 /org.eclipse.mylyn.bugzilla.ui
parenta931b21be7dd85eab75c372f59fe33a743ee395a (diff)
downloadorg.eclipse.mylyn.tasks-a4d1a12a18c05c94c86292c7357d704b41a3d39b.tar.gz
org.eclipse.mylyn.tasks-a4d1a12a18c05c94c86292c7357d704b41a3d39b.tar.xz
org.eclipse.mylyn.tasks-a4d1a12a18c05c94c86292c7357d704b41a3d39b.zip
NEW - bug 193423: merge Open Repository Task dialog and Search
https://bugs.eclipse.org/bugs/show_bug.cgi?id=193423
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.ui')
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchPage.java32
1 files changed, 2 insertions, 30 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchPage.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchPage.java
index d8b9c5f0c..b198a3009 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchPage.java
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchPage.java
@@ -197,34 +197,6 @@ public class BugzillaSearchPage extends AbstractRepositoryQueryPage implements L
WorkbenchHelpSystem.getInstance().setHelp(control, BugzillaUiPlugin.SEARCH_PAGE_CONTEXT);
}
- // private void createRepositoryGroup(Composite control) {
- // Group group = new Group(control, SWT.NONE);
- // group.setText("Repository");
- // GridLayout layout = new GridLayout();
- // layout.numColumns = 1;
- // group.setLayout(layout);
- // GridData gd = new GridData(GridData.FILL_HORIZONTAL);
- // gd.horizontalSpan = 2;
- // group.setLayoutData(gd);
- //
- // repositoryCombo = new Combo(group, SWT.SINGLE | SWT.BORDER);
- // repositoryCombo.addSelectionListener(new SelectionAdapter() {
- // @Override
- // public void widgetSelected(SelectionEvent e) {
- // String repositoryUrl =
- // repositoryCombo.getItem(repositoryCombo.getSelectionIndex());
- // repository =
- // TasksUiPlugin.getRepositoryManager().getRepository(BugzillaCorePlugin.REPOSITORY_KIND,
- // repositoryUrl);
- // updateAttributesFromRepository(repositoryUrl, null, false);
- // restoring = true;
- // restoreWidgetValues();
- // }
- // });
- // gd = new GridData(GridData.FILL_HORIZONTAL | GridData.GRAB_HORIZONTAL);
- // repositoryCombo.setLayoutData(gd);
- // }
-
private void createSearchGroup(Composite control) {
Group group = new Group(control, SWT.NONE);
GridLayout layout = new GridLayout();
@@ -253,7 +225,7 @@ public class BugzillaSearchPage extends AbstractRepositoryQueryPage implements L
// Info text
label = new Label(group, SWT.LEFT);
- label.setText("Summary/taskId contains: ");
+ label.setText("Summary: ");
gd = new GridData(GridData.BEGINNING);
gd.horizontalSpan = 1;
label.setLayoutData(gd);
@@ -300,7 +272,7 @@ public class BugzillaSearchPage extends AbstractRepositoryQueryPage implements L
// Info text
label = new Label(group, SWT.LEFT);
- label.setText("Comment contains: ");
+ label.setText("Comment: ");
gd = new GridData(GridData.BEGINNING);
label.setLayoutData(gd);

Back to the top