Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrelves2007-06-11 22:00:32 +0000
committerrelves2007-06-11 22:00:32 +0000
commit5539342fc0c9b785cbd90a84ae29d3af16c63d89 (patch)
tree6b5acaf9311a7141fc0f838739b80ed778a334e7 /org.eclipse.mylyn.bugzilla.ui
parent10024a18536588106096a991aa4733617e3a310c (diff)
downloadorg.eclipse.mylyn.tasks-5539342fc0c9b785cbd90a84ae29d3af16c63d89.tar.gz
org.eclipse.mylyn.tasks-5539342fc0c9b785cbd90a84ae29d3af16c63d89.tar.xz
org.eclipse.mylyn.tasks-5539342fc0c9b785cbd90a84ae29d3af16c63d89.zip
NEW - bug 179254: [api] AbstractRepositoryTaskEditor needs to be decomposed
https://bugs.eclipse.org/bugs/show_bug.cgi?id=179254
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.ui')
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaTaskEditor.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaTaskEditor.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaTaskEditor.java
index fbd881fcd..1a2595f25 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaTaskEditor.java
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaTaskEditor.java
@@ -331,7 +331,7 @@ public class BugzillaTaskEditor extends AbstractRepositoryTaskEditor {
}
Button button = addButtonField(rolesComposite, attribute, SWT.CHECK);
if (hasChanged(attribute)) {
- button.setBackground(getBackgroundIncoming());
+ button.setBackground(getColorIncoming());
}
attribute = null;
@@ -342,7 +342,7 @@ public class BugzillaTaskEditor extends AbstractRepositoryTaskEditor {
}
button = addButtonField(rolesComposite, attribute, SWT.CHECK);
if (hasChanged(attribute)) {
- button.setBackground(getBackgroundIncoming());
+ button.setBackground(getColorIncoming());
}
}
@@ -484,7 +484,7 @@ public class BugzillaTaskEditor extends AbstractRepositoryTaskEditor {
deadlinePicker.setFont(TEXT_FONT);
deadlinePicker.setDatePattern("yyyy-MM-dd");
if (hasChanged(attribute)) {
- deadlinePicker.setBackground(getBackgroundIncoming());
+ deadlinePicker.setBackground(getColorIncoming());
}
deadlinePicker.addPickerSelectionListener(new SelectionListener() {

Back to the top