Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkersten2007-06-11 15:59:24 +0000
committermkersten2007-06-11 15:59:24 +0000
commit2a4f6be256a7280ef0fdb8cc08ff478780ccec85 (patch)
tree1a70ffda6d37ef3a7d8792c18affeb9eb7afba0a
parent68b4f3c2a8a391132b9cb7f4eaebd7f66bfbc8b6 (diff)
downloadorg.eclipse.mylyn.tasks-2a4f6be256a7280ef0fdb8cc08ff478780ccec85.tar.gz
org.eclipse.mylyn.tasks-2a4f6be256a7280ef0fdb8cc08ff478780ccec85.tar.xz
org.eclipse.mylyn.tasks-2a4f6be256a7280ef0fdb8cc08ff478780ccec85.zip
Incomplete - bug 165359: fix UI nits
https://bugs.eclipse.org/bugs/show_bug.cgi?id=165359
-rw-r--r--org.eclipse.mylyn.tasks.ui/plugin.xml2
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/TaskListColorsAndFonts.java10
2 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/plugin.xml b/org.eclipse.mylyn.tasks.ui/plugin.xml
index e570472ef..e0aeee1f3 100644
--- a/org.eclipse.mylyn.tasks.ui/plugin.xml
+++ b/org.eclipse.mylyn.tasks.ui/plugin.xml
@@ -553,7 +553,7 @@
id="org.eclipse.mylyn.tasks.ui.fonts.task.editor.comment"
isEditable="true"
label="Task Editor - Notes and Comments"
- value="org.eclipse.jface.dialogfont-">
+ value="org.eclipse.jface.dialogfont">
<fontValue
ws="win32"
value="Tahoma-regular-10">
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/TaskListColorsAndFonts.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/TaskListColorsAndFonts.java
index f2e2b1f54..cb99e6bd8 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/TaskListColorsAndFonts.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/TaskListColorsAndFonts.java
@@ -26,15 +26,15 @@ public class TaskListColorsAndFonts {
public static final String THEME_COLOR_TASKS_INCOMING_BACKGROUND = "org.eclipse.mylyn.tasks.ui.colors.incoming.background";
- public static final String THEME_COLOR_TASK_OVERDUE = "org.eclipse.mylyn.tasklist.ui.colors.foreground.overdue";
+ public static final String THEME_COLOR_TASK_OVERDUE = "org.eclipse.mylyn.tasks.ui.colors.foreground.overdue";
- public static final String THEME_COLOR_TASK_THISWEEK_SCHEDULED = "org.eclipse.mylyn.tasklist.ui.colors.foreground.thisweek.scheduled";
+ public static final String THEME_COLOR_TASK_THISWEEK_SCHEDULED = "org.eclipse.mylyn.tasks.ui.colors.foreground.thisweek.scheduled";
- public static final String THEME_COLOR_COMPLETED = "org.eclipse.mylyn.tasklist.ui.colors.foreground.completed";
+ public static final String THEME_COLOR_COMPLETED = "org.eclipse.mylyn.tasks.ui.colors.foreground.completed";
- public static final String THEME_COLOR_TASK_TODAY_SCHEDULED = "org.eclipse.mylyn.tasklist.ui.colors.foreground.today.scheduled";
+ public static final String THEME_COLOR_TASK_TODAY_SCHEDULED = "org.eclipse.mylyn.tasks.ui.colors.foreground.today.scheduled";
- public static final String THEME_COLOR_TASK_TODAY_COMPLETED = "org.eclipse.mylyn.tasklist.ui.colors.foreground.today.completed";
+ public static final String THEME_COLOR_TASK_TODAY_COMPLETED = "org.eclipse.mylyn.tasks.ui.colors.foreground.today.completed";
public static final String THEME_COLOR_CATEGORY_GRADIENT_START = "org.eclipse.mylyn.tasks.ui.colors.category.gradient.start";

Back to the top