From 9dc8ea91a2572fd3e9c57be633a7dae927d8f933 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Sat, 28 Jun 2008 20:53:02 +0000 Subject: [PATCH] remove semicolons from G_IMPLEMENT_INTERFACE(). 2008-06-28 Michael Natterer * gfileicon.c: remove semicolons from G_IMPLEMENT_INTERFACE(). svn path=/trunk/; revision=7101 --- gio/ChangeLog | 4 ++++ gio/gfileicon.c | 11 +++++------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/gio/ChangeLog b/gio/ChangeLog index 9e53ebf0..0af8e0f9 100644 --- a/gio/ChangeLog +++ b/gio/ChangeLog @@ -1,3 +1,7 @@ +2008-06-28 Michael Natterer + + * gfileicon.c: remove semicolons from G_IMPLEMENT_INTERFACE(). + 2008-06-18 Matthias Clasen * glocalfileinfo.c: Don't do fallback for user-home and user-desktop diff --git a/gio/gfileicon.c b/gio/gfileicon.c index 1488ab2e..cf4e9252 100644 --- a/gio/gfileicon.c +++ b/gio/gfileicon.c @@ -59,12 +59,11 @@ struct _GFileIconClass }; G_DEFINE_TYPE_WITH_CODE (GFileIcon, g_file_icon, G_TYPE_OBJECT, - G_IMPLEMENT_INTERFACE (G_TYPE_ICON, - g_file_icon_icon_iface_init); - G_IMPLEMENT_INTERFACE (G_TYPE_LOADABLE_ICON, - g_file_icon_loadable_icon_iface_init); - ) - + G_IMPLEMENT_INTERFACE (G_TYPE_ICON, + g_file_icon_icon_iface_init) + G_IMPLEMENT_INTERFACE (G_TYPE_LOADABLE_ICON, + g_file_icon_loadable_icon_iface_init)) + static void g_file_icon_finalize (GObject *object) { -- 2.34.1