diff options
author | Tarnyko <tarnyko@tarnyko.net> | 2014-02-26 23:15:21 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2014-02-26 23:15:21 +0800 |
commit | 5c60d57082ede522169b65efa67a1e268989b487 (patch) | |
tree | b77a62c5fbee1719f7216f7135c068ca081c9c77 /mail/e-mail-config-summary-page.c | |
parent | 5727d74fb54a1c76922099d023a182418c3bac70 (diff) | |
download | gsoc2013-evolution-5c60d57082ede522169b65efa67a1e268989b487.tar.gz 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-summary-page.c')
-rw-r--r-- | mail/e-mail-config-summary-page.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mail/e-mail-config-summary-page.c b/mail/e-mail-config-summary-page.c index bfee28a254..79a04e287c 100644 --- a/mail/e-mail-config-summary-page.c +++ b/mail/e-mail-config-summary-page.c @@ -70,7 +70,7 @@ static gulong signals[LAST_SIGNAL]; /* Forward Declarations */ static void e_mail_config_summary_page_interface_init - (EMailConfigPageInterface *interface); + (EMailConfigPageInterface *iface); G_DEFINE_TYPE_WITH_CODE ( EMailConfigSummaryPage, @@ -781,12 +781,12 @@ e_mail_config_summary_page_class_init (EMailConfigSummaryPageClass *class) } static void -e_mail_config_summary_page_interface_init (EMailConfigPageInterface *interface) +e_mail_config_summary_page_interface_init (EMailConfigPageInterface *iface) { - interface->title = _("Account Summary"); - interface->sort_order = E_MAIL_CONFIG_SUMMARY_PAGE_SORT_ORDER; - interface->check_complete = mail_config_summary_page_check_complete; - interface->commit_changes = mail_config_summary_page_commit_changes; + iface->title = _("Account Summary"); + iface->sort_order = E_MAIL_CONFIG_SUMMARY_PAGE_SORT_ORDER; + iface->check_complete = mail_config_summary_page_check_complete; + iface->commit_changes = mail_config_summary_page_commit_changes; } static void |