aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-popup-action.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 /e-util/e-popup-action.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 'e-util/e-popup-action.c')
-rw-r--r--e-util/e-popup-action.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/e-util/e-popup-action.c b/e-util/e-popup-action.c
index cb28369a87..9a3702b8d2 100644
--- a/e-util/e-popup-action.c
+++ b/e-util/e-popup-action.c
@@ -44,7 +44,7 @@ struct _EPopupActionPrivate {
};
/* Forward Declarations */
-static void e_popup_action_activatable_init (GtkActivatableIface *interface);
+static void e_popup_action_activatable_init (GtkActivatableIface *iface);
G_DEFINE_TYPE_WITH_CODE (
EPopupAction,
@@ -348,10 +348,10 @@ e_popup_action_init (EPopupAction *popup_action)
}
static void
-e_popup_action_activatable_init (GtkActivatableIface *interface)
+e_popup_action_activatable_init (GtkActivatableIface *iface)
{
- interface->update = popup_action_update;
- interface->sync_action_properties = popup_action_sync_action_properties;
+ iface->update = popup_action_update;
+ iface->sync_action_properties = popup_action_sync_action_properties;
}
EPopupAction *