aboutsummaryrefslogtreecommitdiffstats
path: root/lib/widgets/ephy-toolbars-group.h
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@it.gnome.org>2003-02-22 00:40:34 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-02-22 00:40:34 +0800
commit170c60d49682f73c4a47c16f04ef5f4c06e8c90c (patch)
tree0ce012f754be56d6c0c42152ad79bf3b483242b3 /lib/widgets/ephy-toolbars-group.h
parent19499e453f3efa2208c9905058476d0b1fba68e3 (diff)
downloadgsoc2013-epiphany-170c60d49682f73c4a47c16f04ef5f4c06e8c90c.tar
gsoc2013-epiphany-170c60d49682f73c4a47c16f04ef5f4c06e8c90c.tar.gz
gsoc2013-epiphany-170c60d49682f73c4a47c16f04ef5f4c06e8c90c.tar.bz2
gsoc2013-epiphany-170c60d49682f73c4a47c16f04ef5f4c06e8c90c.tar.lz
gsoc2013-epiphany-170c60d49682f73c4a47c16f04ef5f4c06e8c90c.tar.xz
gsoc2013-epiphany-170c60d49682f73c4a47c16f04ef5f4c06e8c90c.tar.zst
gsoc2013-epiphany-170c60d49682f73c4a47c16f04ef5f4c06e8c90c.zip
Fix crashes with multiple windows open
2003-02-21 Marco Pesenti Gritti <marco@it.gnome.org> * lib/egg/egg-action.c: (egg_action_remove_proxy): * lib/widgets/ephy-editable-toolbar.c: (get_item_widget), (connect_item_drag_source), (disconnect_item_drag_source), (setup_toolbar), (setup_item), (ensure_toolbar_min_size): * lib/widgets/ephy-toolbars-group.c: (toolbars_toolbar_new), (toolbars_item_new), (free_toolbar_node), (free_item_node), (ephy_toolbars_group_to_string), (ephy_toolbars_group_get_path): * lib/widgets/ephy-toolbars-group.h: Fix crashes with multiple windows open
Diffstat (limited to 'lib/widgets/ephy-toolbars-group.h')
-rwxr-xr-xlib/widgets/ephy-toolbars-group.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/widgets/ephy-toolbars-group.h b/lib/widgets/ephy-toolbars-group.h
index d44a5c44c..8be71cb23 100755
--- a/lib/widgets/ephy-toolbars-group.h
+++ b/lib/widgets/ephy-toolbars-group.h
@@ -39,14 +39,14 @@ typedef struct EphyToolbarsGroupPrivate EphyToolbarsGroupPrivate;
typedef struct
{
- GtkWidget *widget;
+ char *id;
} EphyToolbarsToolbar;
typedef struct
{
+ char *id;
gboolean separator;
char *action;
- GtkWidget *widget;
EphyToolbarsToolbar *parent;
} EphyToolbarsItem;