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.) --- smime/lib/e-cert.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'smime') diff --git a/smime/lib/e-cert.c b/smime/lib/e-cert.c index 55f35f8858..fc00b58057 100644 --- a/smime/lib/e-cert.c +++ b/smime/lib/e-cert.c @@ -100,7 +100,7 @@ struct _ECertPrivate { /* Forward Declarations */ static void e_cert_gcr_certificate_init - (GcrCertificateIface *interface); + (GcrCertificateIface *iface); G_DEFINE_TYPE_WITH_CODE ( ECert, @@ -191,9 +191,9 @@ e_cert_class_init (ECertClass *class) } static void -e_cert_gcr_certificate_init (GcrCertificateIface *interface) +e_cert_gcr_certificate_init (GcrCertificateIface *iface) { - interface->get_der_data = cert_get_der_data; + iface->get_der_data = cert_get_der_data; } static void -- cgit v1.2.3