diff options
Diffstat (limited to 'e-util/e-attachment-paned.c')
-rw-r--r-- | e-util/e-attachment-paned.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/e-util/e-attachment-paned.c b/e-util/e-attachment-paned.c index e94763fb3c..98772db873 100644 --- a/e-util/e-attachment-paned.c +++ b/e-util/e-attachment-paned.c @@ -69,7 +69,7 @@ enum { /* Forward Declarations */ static void e_attachment_paned_interface_init - (EAttachmentViewInterface *interface); + (EAttachmentViewInterface *iface); G_DEFINE_TYPE_WITH_CODE ( EAttachmentPaned, @@ -760,18 +760,18 @@ e_attachment_paned_init (EAttachmentPaned *paned) } static void -e_attachment_paned_interface_init (EAttachmentViewInterface *interface) +e_attachment_paned_interface_init (EAttachmentViewInterface *iface) { - interface->get_private = attachment_paned_get_private; - interface->get_store = attachment_paned_get_store; - interface->get_path_at_pos = attachment_paned_get_path_at_pos; - interface->get_selected_paths = attachment_paned_get_selected_paths; - interface->path_is_selected = attachment_paned_path_is_selected; - interface->select_path = attachment_paned_select_path; - interface->unselect_path = attachment_paned_unselect_path; - interface->select_all = attachment_paned_select_all; - interface->unselect_all = attachment_paned_unselect_all; - interface->update_actions = attachment_paned_update_actions; + iface->get_private = attachment_paned_get_private; + iface->get_store = attachment_paned_get_store; + iface->get_path_at_pos = attachment_paned_get_path_at_pos; + iface->get_selected_paths = attachment_paned_get_selected_paths; + iface->path_is_selected = attachment_paned_path_is_selected; + iface->select_path = attachment_paned_select_path; + iface->unselect_path = attachment_paned_unselect_path; + iface->select_all = attachment_paned_select_all; + iface->unselect_all = attachment_paned_unselect_all; + iface->update_actions = attachment_paned_update_actions; } GtkWidget * |