aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-task-table.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 /calendar/gui/e-task-table.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 'calendar/gui/e-task-table.c')
-rw-r--r--calendar/gui/e-task-table.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/calendar/gui/e-task-table.c b/calendar/gui/e-task-table.c
index 8f6181fee2..085b1b4c04 100644
--- a/calendar/gui/e-task-table.c
+++ b/calendar/gui/e-task-table.c
@@ -89,7 +89,7 @@ static const gchar *icon_names[] = {
/* Forward Declarations */
static void e_task_table_selectable_init
- (ESelectableInterface *interface);
+ (ESelectableInterface *iface);
G_DEFINE_TYPE_WITH_CODE (
ETaskTable,
@@ -1560,14 +1560,14 @@ e_task_table_init (ETaskTable *task_table)
}
static void
-e_task_table_selectable_init (ESelectableInterface *interface)
+e_task_table_selectable_init (ESelectableInterface *iface)
{
- interface->update_actions = task_table_update_actions;
- interface->cut_clipboard = task_table_cut_clipboard;
- interface->copy_clipboard = task_table_copy_clipboard;
- interface->paste_clipboard = task_table_paste_clipboard;
- interface->delete_selection = task_table_delete_selection;
- interface->select_all = task_table_select_all;
+ iface->update_actions = task_table_update_actions;
+ iface->cut_clipboard = task_table_cut_clipboard;
+ iface->copy_clipboard = task_table_copy_clipboard;
+ iface->paste_clipboard = task_table_paste_clipboard;
+ iface->delete_selection = task_table_delete_selection;
+ iface->select_all = task_table_select_all;
}
/**