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.) --- e-util/e-source-config-dialog.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'e-util/e-source-config-dialog.c') diff --git a/e-util/e-source-config-dialog.c b/e-util/e-source-config-dialog.c index 5c84bda2de..507f8c459b 100644 --- a/e-util/e-source-config-dialog.c +++ b/e-util/e-source-config-dialog.c @@ -46,7 +46,7 @@ enum { /* Forward Declarations */ static void e_source_config_dialog_alert_sink_init - (EAlertSinkInterface *interface); + (EAlertSinkInterface *iface); G_DEFINE_TYPE_WITH_CODE ( ESourceConfigDialog, @@ -360,9 +360,9 @@ e_source_config_dialog_class_init (ESourceConfigDialogClass *class) } static void -e_source_config_dialog_alert_sink_init (EAlertSinkInterface *interface) +e_source_config_dialog_alert_sink_init (EAlertSinkInterface *iface) { - interface->submit_alert = source_config_dialog_submit_alert; + iface->submit_alert = source_config_dialog_submit_alert; } static void -- cgit v1.2.3