diff options
author | Milan Crha <mcrha@redhat.com> | 2007-12-04 02:22:12 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2007-12-04 02:22:12 +0800 |
commit | cf649a8408918e3cd5a185dabaa7b9ba497ad250 (patch) | |
tree | 855a04774f7918fd7523a7e5fcdba09691c3d1ca /calendar/gui/e-meeting-list-view.h | |
parent | 796e7ca63b134fca7767d1b009aa973c03fd46a6 (diff) | |
download | gsoc2013-evolution-cf649a8408918e3cd5a185dabaa7b9ba497ad250.tar.gz 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-list-view.h')
-rw-r--r-- | calendar/gui/e-meeting-list-view.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/e-meeting-list-view.h b/calendar/gui/e-meeting-list-view.h index f565381382..f93d6e9c46 100644 --- a/calendar/gui/e-meeting-list-view.h +++ b/calendar/gui/e-meeting-list-view.h @@ -57,7 +57,7 @@ GType e_meeting_list_view_get_type (void); EMeetingListView *e_meeting_list_view_new (EMeetingStore *store); -void e_meeting_list_view_column_set_visible (EMeetingListView *emlv, const gchar *col_name, gboolean visible); +void e_meeting_list_view_column_set_visible (EMeetingListView *emlv, EMeetingStoreColumns column, gboolean visible); void e_meeting_list_view_edit (EMeetingListView *emlv, EMeetingAttendee *attendee); |