diff options
author | Jasmine Hassan <[email protected]> | 2012-11-06 18:07:07 +0200 |
---|---|---|
committer | Jasmine Hassan <[email protected]> | 2012-11-16 09:45:52 +0200 |
commit | 765d89de748d29e99e0babf08091985133f9c377 (patch) | |
tree | eb08c882de08893e0e73ac01e3ddf29ac5565357 /src/caja-emblem-sidebar.c | |
parent | 5d46e2a7bed077a365f4df32e8ef2ef20323871c (diff) | |
download | caja-765d89de748d29e99e0babf08091985133f9c377.tar.bz2 caja-765d89de748d29e99e0babf08091985133f9c377.tar.xz |
[emblem-sidebar] Don't include eel-gtk-macros, minor cleanup
Diffstat (limited to 'src/caja-emblem-sidebar.c')
-rw-r--r-- | src/caja-emblem-sidebar.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/caja-emblem-sidebar.c b/src/caja-emblem-sidebar.c index 7c188a7d..ea21bec9 100644 --- a/src/caja-emblem-sidebar.c +++ b/src/caja-emblem-sidebar.c @@ -32,7 +32,6 @@ #include "caja-emblem-sidebar.h" #include <stdio.h> -#include <eel/eel-gtk-macros.h> #include <eel/eel-glib-extensions.h> #include <eel/eel-string.h> #include <eel/eel-wrap-table.h> @@ -67,12 +66,10 @@ struct CajaEmblemSidebarDetails #define STANDARD_EMBLEM_HEIGHT 52 #define EMBLEM_LABEL_SPACING 2 -static void caja_emblem_sidebar_iface_init (CajaSidebarIface *iface); -static void caja_emblem_sidebar_finalize (GObject *object); static void caja_emblem_sidebar_populate (CajaEmblemSidebar *emblem_sidebar); static void caja_emblem_sidebar_refresh (CajaEmblemSidebar *emblem_sidebar); static void caja_emblem_sidebar_iface_init (CajaSidebarIface *iface); -static void sidebar_provider_iface_init (CajaSidebarProviderIface *iface); +static void sidebar_provider_iface_init (CajaSidebarProviderIface *iface); static GType caja_emblem_sidebar_provider_get_type (void); static const GtkTargetEntry drag_types[] = @@ -113,8 +110,6 @@ typedef struct } CajaEmblemSidebarProviderClass; - - G_DEFINE_TYPE_WITH_CODE (CajaEmblemSidebar, caja_emblem_sidebar, GTK_TYPE_VBOX, G_IMPLEMENT_INTERFACE (CAJA_TYPE_SIDEBAR, caja_emblem_sidebar_iface_init)); |