Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfbecker2010-02-11 06:17:05 +0000
committerfbecker2010-02-11 06:17:05 +0000
commit64c9d68108fcd8f781ba6d0394d19f6ade74d760 (patch)
tree90ec9bb6a4f769f685d2574c0aa98b0f4d3ab61f
parentade2251e078750c362e812763ffd00dc4d7b2477 (diff)
downloadorg.eclipse.mylyn.tasks-64c9d68108fcd8f781ba6d0394d19f6ade74d760.tar.gz
org.eclipse.mylyn.tasks-64c9d68108fcd8f781ba6d0394d19f6ade74d760.tar.xz
org.eclipse.mylyn.tasks-64c9d68108fcd8f781ba6d0394d19f6ade74d760.zip
ASSIGNED - bug 290197: [ui] refactor bugzilla search query page layout
https://bugs.eclipse.org/bugs/show_bug.cgi?id=290197
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchPage.java8
1 files changed, 4 insertions, 4 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 b0caedae3..eadfb7a3b 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
@@ -358,9 +358,9 @@ public class BugzillaSearchPage extends AbstractRepositoryQueryPage implements L
priority.deselectAll();
hardware.deselectAll();
os.deselectAll();
- summaryOperation.deselectAll();
- commentOperation.deselectAll();
- emailOperation.deselectAll();
+ summaryOperation.select(0);
+ commentOperation.select(0);
+ emailOperation.select(0);
for (Button emailButton : emailButtons) {
emailButton.setSelection(false);
@@ -368,7 +368,7 @@ public class BugzillaSearchPage extends AbstractRepositoryQueryPage implements L
summaryPattern.setText(""); //$NON-NLS-1$
commentPattern.setText(""); //$NON-NLS-1$
emailPattern.setText(""); //$NON-NLS-1$
- emailOperation2.deselectAll();
+ emailOperation2.select(0);
for (Button element : emailButtons2) {
element.setSelection(false);
}

Back to the top