aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-config-lookup-page.c
diff options
context:
space:
mode:
authorTarnyko <tarnyko@tarnyko.net>2014-02-26 23:15:21 +0800
committerMilan Crha <mcrha@redhat.com>2014-02-26 23:15:21 +0800
commit5c60d57082ede522169b65efa67a1e268989b487 (patch)
treeb77a62c5fbee1719f7216f7135c068ca081c9c77 /mail/e-mail-config-lookup-page.c
parent5727d74fb54a1c76922099d023a182418c3bac70 (diff)
downloadgsoc2013-evolution-5c60d57082ede522169b65efa67a1e268989b487.tar
gsoc2013-evolution-5c60d57082ede522169b65efa67a1e268989b487.tar.gz
gsoc2013-evolution-5c60d57082ede522169b65efa67a1e268989b487.tar.bz2
gsoc2013-evolution-5c60d57082ede522169b65efa67a1e268989b487.tar.lz
gsoc2013-evolution-5c60d57082ede522169b65efa67a1e268989b487.tar.xz
gsoc2013-evolution-5c60d57082ede522169b65efa67a1e268989b487.tar.zst
gsoc2013-evolution-5c60d57082ede522169b65efa67a1e268989b487.zip
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.)
Diffstat (limited to 'mail/e-mail-config-lookup-page.c')
-rw-r--r--mail/e-mail-config-lookup-page.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/mail/e-mail-config-lookup-page.c b/mail/e-mail-config-lookup-page.c
index a5036e2eac..8986469530 100644
--- a/mail/e-mail-config-lookup-page.c
+++ b/mail/e-mail-config-lookup-page.c
@@ -22,7 +22,7 @@
/* Forward Declarations */
static void e_mail_config_lookup_page_interface_init
- (EMailConfigPageInterface *interface);
+ (EMailConfigPageInterface *iface);
G_DEFINE_TYPE_WITH_CODE (
EMailConfigLookupPage,
@@ -86,14 +86,14 @@ e_mail_config_lookup_page_class_init (EMailConfigLookupPageClass *class)
}
static void
-e_mail_config_lookup_page_interface_init (EMailConfigPageInterface *interface)
+e_mail_config_lookup_page_interface_init (EMailConfigPageInterface *iface)
{
/* Do not set a title. We don't want this
* page listed in a GtkAssistant sidebar. */
- interface->title = "";
- interface->sort_order = E_MAIL_CONFIG_LOOKUP_PAGE_SORT_ORDER;
- interface->page_type = GTK_ASSISTANT_PAGE_CUSTOM;
- interface->check_complete = mail_config_lookup_page_check_complete;
+ iface->title = "";
+ iface->sort_order = E_MAIL_CONFIG_LOOKUP_PAGE_SORT_ORDER;
+ iface->page_type = GTK_ASSISTANT_PAGE_CUSTOM;
+ iface->check_complete = mail_config_lookup_page_check_complete;
}
static void