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-label-list-store.c | |
parent | 5727d74fb54a1c76922099d023a182418c3bac70 (diff) | |
download | gsoc2013-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-label-list-store.c')
-rw-r--r-- | mail/e-mail-label-list-store.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/e-mail-label-list-store.c b/mail/e-mail-label-list-store.c index 0ef9c352c1..3d9a1a8784 100644 --- a/mail/e-mail-label-list-store.c +++ b/mail/e-mail-label-list-store.c @@ -62,7 +62,7 @@ static struct { /* Forward Declarations */ static void e_mail_label_list_store_interface_init - (GtkTreeModelIface *interface); + (GtkTreeModelIface *iface); static void labels_settings_changed_cb (GSettings *settings, const gchar *key, gpointer user_data); @@ -437,9 +437,9 @@ e_mail_label_list_store_class_init (EMailLabelListStoreClass *class) } static void -e_mail_label_list_store_interface_init (GtkTreeModelIface *interface) +e_mail_label_list_store_interface_init (GtkTreeModelIface *iface) { - interface->row_inserted = mail_label_list_store_row_inserted; + iface->row_inserted = mail_label_list_store_row_inserted; } static void |