From 5c60d57082ede522169b65efa67a1e268989b487 Mon Sep 17 00:00:00 2001 From: Tarnyko Date: Wed, 26 Feb 2014 16:15:21 +0100 Subject: Replace 'interface' with 'iface' in the code Win32 headers have a #define for 'interface', which breaks the build when this word is used in the code, thus replace it to 'iface', the same way as GLib or GTK+ code use to have it. (See bug #722068.) --- modules/contact-photos/e-contact-photo-source.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules/contact-photos/e-contact-photo-source.c') diff --git a/modules/contact-photos/e-contact-photo-source.c b/modules/contact-photos/e-contact-photo-source.c index ad27d05377..910bc12d3a 100644 --- a/modules/contact-photos/e-contact-photo-source.c +++ b/modules/contact-photos/e-contact-photo-source.c @@ -44,7 +44,7 @@ enum { /* Forward Declarations */ static void e_contact_photo_source_interface_init - (EPhotoSourceInterface *interface); + (EPhotoSourceInterface *iface); G_DEFINE_DYNAMIC_TYPE_EXTENDED ( EContactPhotoSource, @@ -415,10 +415,10 @@ e_contact_photo_source_class_finalize (EContactPhotoSourceClass *class) } static void -e_contact_photo_source_interface_init (EPhotoSourceInterface *interface) +e_contact_photo_source_interface_init (EPhotoSourceInterface *iface) { - interface->get_photo = contact_photo_source_get_photo; - interface->get_photo_finish = contact_photo_source_get_photo_finish; + iface->get_photo = contact_photo_source_get_photo; + iface->get_photo_finish = contact_photo_source_get_photo_finish; } static void -- cgit v1.2.3