aboutsummaryrefslogtreecommitdiffstats
path: root/lib/egg/egg-toolbar-editor.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2004-04-03 17:34:32 +0800
committerChristian Persch <chpe@src.gnome.org>2004-04-03 17:34:32 +0800
commitea084205d4df9e561fa698605e1154fdf1e3454d (patch)
tree07101520ca8dcb15487bb85b32354c599937d03a /lib/egg/egg-toolbar-editor.c
parent6d4fbeff8eb5a07383aef3cc923b8b458adad354 (diff)
downloadgsoc2013-epiphany-ea084205d4df9e561fa698605e1154fdf1e3454d.tar
gsoc2013-epiphany-ea084205d4df9e561fa698605e1154fdf1e3454d.tar.gz
gsoc2013-epiphany-ea084205d4df9e561fa698605e1154fdf1e3454d.tar.bz2
gsoc2013-epiphany-ea084205d4df9e561fa698605e1154fdf1e3454d.tar.lz
gsoc2013-epiphany-ea084205d4df9e561fa698605e1154fdf1e3454d.tar.xz
gsoc2013-epiphany-ea084205d4df9e561fa698605e1154fdf1e3454d.tar.zst
gsoc2013-epiphany-ea084205d4df9e561fa698605e1154fdf1e3454d.zip
Merging Crispin's toolbar fixes from HEAD
Diffstat (limited to 'lib/egg/egg-toolbar-editor.c')
-rwxr-xr-xlib/egg/egg-toolbar-editor.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/egg/egg-toolbar-editor.c b/lib/egg/egg-toolbar-editor.c
index 991f4843b..34cbd6b48 100755
--- a/lib/egg/egg-toolbar-editor.c
+++ b/lib/egg/egg-toolbar-editor.c
@@ -34,12 +34,12 @@
#include <gtk/gtkhbox.h>
static GtkTargetEntry dest_drag_types[] = {
- {EGG_TOOLBAR_ITEM_TYPE, 0, 0},
+ {EGG_TOOLBAR_ITEM_TYPE, GTK_TARGET_SAME_APP, 0},
};
static int n_dest_drag_types = G_N_ELEMENTS (dest_drag_types);
static GtkTargetEntry source_drag_types[] = {
- {EGG_TOOLBAR_ITEM_TYPE, 0, 0},
+ {EGG_TOOLBAR_ITEM_TYPE, GTK_TARGET_SAME_APP, 0},
};
static int n_source_drag_types = G_N_ELEMENTS (source_drag_types);
@@ -694,7 +694,6 @@ egg_toolbar_editor_load_actions (EggToolbarEditor *editor,
xmlDocPtr doc;
xmlNodePtr root;
xmlNodePtr child;
- GList *l;
doc = xmlParseFile (xml_file);
root = xmlDocGetRootElement (doc);