aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2008-01-29 01:53:07 +0800
committerMilan Crha <mcrha@src.gnome.org>2008-01-29 01:53:07 +0800
commitee4335fd753c100631d6104743ed1040939cc5c9 (patch)
tree698ceefb0f79bb7f563fa4cb76fd2909c586602a /calendar
parentef7ca5d0d1d0bc1151b82767dd569057972e5367 (diff)
downloadgsoc2013-evolution-ee4335fd753c100631d6104743ed1040939cc5c9.tar
gsoc2013-evolution-ee4335fd753c100631d6104743ed1040939cc5c9.tar.gz
gsoc2013-evolution-ee4335fd753c100631d6104743ed1040939cc5c9.tar.bz2
gsoc2013-evolution-ee4335fd753c100631d6104743ed1040939cc5c9.tar.lz
gsoc2013-evolution-ee4335fd753c100631d6104743ed1040939cc5c9.tar.xz
gsoc2013-evolution-ee4335fd753c100631d6104743ed1040939cc5c9.tar.zst
gsoc2013-evolution-ee4335fd753c100631d6104743ed1040939cc5c9.zip
** Fix for bug #240073
2008-01-28 Milan Crha <mcrha@redhat.com> ** Fix for bug #240073 * gui/e-cal-model-tasks.h: (enum ECalModelTasksField): Move strikeout field to known fields, otherwise the "Click to add" row will have text strikeouted. svn path=/trunk/; revision=34920
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog8
-rw-r--r--calendar/gui/e-cal-model-tasks.h4
2 files changed, 10 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index b8d3a622e6..be12dadc1f 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,11 @@
+2008-01-28 Milan Crha <mcrha@redhat.com>
+
+ ** Fix for bug #240073
+
+ * gui/e-cal-model-tasks.h: (enum ECalModelTasksField):
+ Move strikeout field to known fields, otherwise the "Click to add" row
+ will have text strikeouted.
+
2008-01-28 Chenthill Palanisamy <pchenthill@novell.com>
* gui/print.c: (print_week_summary): Free the component
diff --git a/calendar/gui/e-cal-model-tasks.h b/calendar/gui/e-cal-model-tasks.h
index eb5d0609cb..81034d5cef 100644
--- a/calendar/gui/e-cal-model-tasks.h
+++ b/calendar/gui/e-cal-model-tasks.h
@@ -46,8 +46,8 @@ typedef enum {
E_CAL_MODEL_TASKS_FIELD_PRIORITY,
E_CAL_MODEL_TASKS_FIELD_STATUS,
E_CAL_MODEL_TASKS_FIELD_URL,
- E_CAL_MODEL_TASKS_FIELD_LAST,
- E_CAL_MODEL_TASKS_FIELD_STRIKEOUT /* it's another virtual readonly column */
+ E_CAL_MODEL_TASKS_FIELD_STRIKEOUT, /* it's another virtual readonly column */
+ E_CAL_MODEL_TASKS_FIELD_LAST
} ECalModelTasksField;
typedef struct {