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 /e-util/e-data-capture.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 'e-util/e-data-capture.c')
-rw-r--r-- | e-util/e-data-capture.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/e-util/e-data-capture.c b/e-util/e-data-capture.c index e0413a029f..f51e682f07 100644 --- a/e-util/e-data-capture.c +++ b/e-util/e-data-capture.c @@ -63,7 +63,7 @@ enum { static guint signals[LAST_SIGNAL]; /* Forward Declarations */ -static void e_data_capture_converter_init (GConverterIface *interface); +static void e_data_capture_converter_init (GConverterIface *iface); G_DEFINE_TYPE_WITH_CODE ( EDataCapture, @@ -303,10 +303,10 @@ e_data_capture_class_init (EDataCaptureClass *class) } static void -e_data_capture_converter_init (GConverterIface *interface) +e_data_capture_converter_init (GConverterIface *iface) { - interface->convert = data_capture_convert; - interface->reset = data_capture_reset; + iface->convert = data_capture_convert; + iface->reset = data_capture_reset; } static void |