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/evolution-source-viewer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'e-util/evolution-source-viewer.c') diff --git a/e-util/evolution-source-viewer.c b/e-util/evolution-source-viewer.c index 8d6db0a615..71f76d61e8 100644 --- a/e-util/evolution-source-viewer.c +++ b/e-util/evolution-source-viewer.c @@ -116,7 +116,7 @@ gboolean e_source_viewer_set_selected_source GNode * e_source_viewer_build_display_tree (ESourceViewer *viewer); -static void e_source_viewer_initable_init (GInitableIface *interface); +static void e_source_viewer_initable_init (GInitableIface *iface); G_DEFINE_TYPE_WITH_CODE ( ESourceViewer, @@ -909,9 +909,9 @@ e_source_viewer_class_init (ESourceViewerClass *class) } static void -e_source_viewer_initable_init (GInitableIface *interface) +e_source_viewer_initable_init (GInitableIface *iface) { - interface->init = source_viewer_initable_init; + iface->init = source_viewer_initable_init; } static void -- cgit v1.2.3