mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-21 08:28:53 +02:00
remove semicolons from G_IMPLEMENT_INTERFACE().
2008-06-28 Michael Natterer <mitch@imendio.com> * gfileicon.c: remove semicolons from G_IMPLEMENT_INTERFACE(). svn path=/trunk/; revision=7101
This commit is contained in:
committed by
Michael Natterer
parent
3ed6102555
commit
9dc8ea91a2
@@ -1,3 +1,7 @@
|
|||||||
|
2008-06-28 Michael Natterer <mitch@imendio.com>
|
||||||
|
|
||||||
|
* gfileicon.c: remove semicolons from G_IMPLEMENT_INTERFACE().
|
||||||
|
|
||||||
2008-06-18 Matthias Clasen <mclasen@rdhat.com>
|
2008-06-18 Matthias Clasen <mclasen@rdhat.com>
|
||||||
|
|
||||||
* glocalfileinfo.c: Don't do fallback for user-home and user-desktop
|
* glocalfileinfo.c: Don't do fallback for user-home and user-desktop
|
||||||
|
@@ -59,12 +59,11 @@ struct _GFileIconClass
|
|||||||
};
|
};
|
||||||
|
|
||||||
G_DEFINE_TYPE_WITH_CODE (GFileIcon, g_file_icon, G_TYPE_OBJECT,
|
G_DEFINE_TYPE_WITH_CODE (GFileIcon, g_file_icon, G_TYPE_OBJECT,
|
||||||
G_IMPLEMENT_INTERFACE (G_TYPE_ICON,
|
G_IMPLEMENT_INTERFACE (G_TYPE_ICON,
|
||||||
g_file_icon_icon_iface_init);
|
g_file_icon_icon_iface_init)
|
||||||
G_IMPLEMENT_INTERFACE (G_TYPE_LOADABLE_ICON,
|
G_IMPLEMENT_INTERFACE (G_TYPE_LOADABLE_ICON,
|
||||||
g_file_icon_loadable_icon_iface_init);
|
g_file_icon_loadable_icon_iface_init))
|
||||||
)
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
g_file_icon_finalize (GObject *object)
|
g_file_icon_finalize (GObject *object)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user