aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-meeting-time-sel.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2007-12-04 02:22:12 +0800
committerMilan Crha <mcrha@src.gnome.org>2007-12-04 02:22:12 +0800
commitcf649a8408918e3cd5a185dabaa7b9ba497ad250 (patch)
tree855a04774f7918fd7523a7e5fcdba09691c3d1ca /calendar/gui/e-meeting-time-sel.c
parent796e7ca63b134fca7767d1b009aa973c03fd46a6 (diff)
downloadgsoc2013-evolution-cf649a8408918e3cd5a185dabaa7b9ba497ad250.tar
gsoc2013-evolution-cf649a8408918e3cd5a185dabaa7b9ba497ad250.tar.gz
gsoc2013-evolution-cf649a8408918e3cd5a185dabaa7b9ba497ad250.tar.bz2
gsoc2013-evolution-cf649a8408918e3cd5a185dabaa7b9ba497ad250.tar.lz
gsoc2013-evolution-cf649a8408918e3cd5a185dabaa7b9ba497ad250.tar.xz
gsoc2013-evolution-cf649a8408918e3cd5a185dabaa7b9ba497ad250.tar.zst
gsoc2013-evolution-cf649a8408918e3cd5a185dabaa7b9ba497ad250.zip
** Fix for bug #440497
2007-12-03 Milan Crha <mcrha@redhat.com> ** Fix for bug #440497 * gui/e-meeting-list-view.h: (e_meeting_list_view_column_set_visible): Prototype changed to refer to column based on enum identifier. * gui/e-meeting-list-view.c: (build_table): Store column enum identifier in column datas, for later use. * gui/e-meeting-list-view.c: (e_meeting_list_view_column_set_visible): * gui/dialogs/task-page.c: * gui/dialogs/event-page.c: * gui/e-meeting-time-sel.c: Refer for column based on the enum, not on the column title. svn path=/trunk/; revision=34628
Diffstat (limited to 'calendar/gui/e-meeting-time-sel.c')
-rw-r--r--calendar/gui/e-meeting-time-sel.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/calendar/gui/e-meeting-time-sel.c b/calendar/gui/e-meeting-time-sel.c
index cadb1d3c9a..5367cd3335 100644
--- a/calendar/gui/e-meeting-time-sel.c
+++ b/calendar/gui/e-meeting-time-sel.c
@@ -327,10 +327,10 @@ e_meeting_time_selector_construct (EMeetingTimeSelector * mts, EMeetingStore *em
g_signal_connect (mts->model, "row_deleted", G_CALLBACK (row_deleted_cb), mts);
mts->list_view = e_meeting_list_view_new (mts->model);
- e_meeting_list_view_column_set_visible (mts->list_view, "Role", FALSE);
- e_meeting_list_view_column_set_visible (mts->list_view, "RSVP", FALSE);
- e_meeting_list_view_column_set_visible (mts->list_view, "Status", FALSE);
- e_meeting_list_view_column_set_visible (mts->list_view, "Type", FALSE);
+ e_meeting_list_view_column_set_visible (mts->list_view, E_MEETING_STORE_ROLE_COL, FALSE);
+ e_meeting_list_view_column_set_visible (mts->list_view, E_MEETING_STORE_RSVP_COL, FALSE);
+ e_meeting_list_view_column_set_visible (mts->list_view, E_MEETING_STORE_STATUS_COL, FALSE);
+ e_meeting_list_view_column_set_visible (mts->list_view, E_MEETING_STORE_TYPE_COL, FALSE);
gtk_widget_show (GTK_WIDGET (mts->list_view));