diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-01-04 11:47:27 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-01-05 09:22:21 +0800 |
commit | 5c80f1534b435ff5c1c9cc88eb9f5c5c1124f82a (patch) | |
tree | 92b05ad7116690bf2da53a0fa6ba813fcbea50c7 /calendar/gui/dialogs | |
parent | 69945127d8a7933512bb14eb20ff85354704b5cc (diff) | |
download | gsoc2013-evolution-5c80f1534b435ff5c1c9cc88eb9f5c5c1124f82a.tar gsoc2013-evolution-5c80f1534b435ff5c1c9cc88eb9f5c5c1124f82a.tar.gz gsoc2013-evolution-5c80f1534b435ff5c1c9cc88eb9f5c5c1124f82a.tar.bz2 gsoc2013-evolution-5c80f1534b435ff5c1c9cc88eb9f5c5c1124f82a.tar.lz gsoc2013-evolution-5c80f1534b435ff5c1c9cc88eb9f5c5c1124f82a.tar.xz gsoc2013-evolution-5c80f1534b435ff5c1c9cc88eb9f5c5c1124f82a.tar.zst gsoc2013-evolution-5c80f1534b435ff5c1c9cc88eb9f5c5c1124f82a.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'calendar/gui/dialogs')
-rw-r--r-- | calendar/gui/dialogs/comp-editor.h | 27 |
1 files changed, 18 insertions, 9 deletions
diff --git a/calendar/gui/dialogs/comp-editor.h b/calendar/gui/dialogs/comp-editor.h index 54672ec3b8..4871beae8f 100644 --- a/calendar/gui/dialogs/comp-editor.h +++ b/calendar/gui/dialogs/comp-editor.h @@ -67,16 +67,25 @@ struct _CompEditorClass { const gchar *help_section; /* Virtual functions */ - void (*edit_comp) (CompEditor *page, ECalComponent *comp); - void (*object_created) (CompEditor *page); - gboolean (*send_comp) (CompEditor *page, ECalComponentItipMethod method, gboolean strip_alarms); + void (*edit_comp) (CompEditor *page, + ECalComponent *comp); + void (*object_created) (CompEditor *page); + gboolean (*send_comp) (CompEditor *page, + ECalComponentItipMethod method, + gboolean strip_alarms); - void (*show_categories) (CompEditor *editor, gboolean visible); - void (*show_role) (CompEditor *editor, gboolean visible); - void (*show_rsvp) (CompEditor *editor, gboolean visible); - void (*show_status) (CompEditor *editor, gboolean visible); - void (*show_time_zone) (CompEditor *editor, gboolean visible); - void (*show_type) (CompEditor *editor, gboolean visible); + void (*show_categories) (CompEditor *editor, + gboolean visible); + void (*show_role) (CompEditor *editor, + gboolean visible); + void (*show_rsvp) (CompEditor *editor, + gboolean visible); + void (*show_status) (CompEditor *editor, + gboolean visible); + void (*show_time_zone) (CompEditor *editor, + gboolean visible); + void (*show_type) (CompEditor *editor, + gboolean visible); }; typedef enum { |