diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-02-21 21:29:37 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-02-21 21:29:37 +0800 |
commit | a3d3dccb3b0320900696f6a2246b07afb28766ec (patch) | |
tree | 7a9e8195d49f1dada7d36737ef3a0129d6545ba2 /src/toolbar.c | |
parent | 9a390a3125826aeb7f62bdac0b6c31c576f688be (diff) | |
download | gsoc2013-epiphany-a3d3dccb3b0320900696f6a2246b07afb28766ec.tar gsoc2013-epiphany-a3d3dccb3b0320900696f6a2246b07afb28766ec.tar.gz gsoc2013-epiphany-a3d3dccb3b0320900696f6a2246b07afb28766ec.tar.bz2 gsoc2013-epiphany-a3d3dccb3b0320900696f6a2246b07afb28766ec.tar.lz gsoc2013-epiphany-a3d3dccb3b0320900696f6a2246b07afb28766ec.tar.xz gsoc2013-epiphany-a3d3dccb3b0320900696f6a2246b07afb28766ec.tar.zst gsoc2013-epiphany-a3d3dccb3b0320900696f6a2246b07afb28766ec.zip |
Add lots of debug code to solve these damned crashes. Dont create multiple
2003-02-21 Marco Pesenti Gritti <marco@it.gnome.org>
* lib/widgets/ephy-editable-toolbar.c: (find_action),
(impl_get_action), (ui_update), (queue_ui_update),
(drag_data_received_cb), (drag_data_delete_cb), (drag_data_get_cb),
(connect_item_drag_source), (disconnect_item_drag_source),
(setup_toolbar), (setup_item), (ensure_toolbar_min_size),
(do_merge), (ensure_action), (group_changed_cb),
(ephy_editable_toolbar_set_group),
(ephy_editable_toolbar_set_merge), (hide_editor),
(editor_close_cb), (editor_add_toolbar_cb),
(editor_drag_data_received_cb), (editor_drag_data_delete_cb),
(setup_editor), (add_to_list), (update_editor_sheet),
(update_editor_position), (button_press_cb), (show_editor),
(set_action_sensitive), (ephy_editable_toolbar_edit):
* lib/widgets/ephy-toolbars-group.c: (ephy_toolbars_group_to_xml),
(toolbars_group_save), (toolbars_item_new), (free_toolbar_node),
(free_item_node), (ephy_toolbars_group_add_item),
(ephy_toolbars_group_add_toolbar), (load_defaults), (load_toolbar),
(ephy_toolbars_group_to_string),
(ephy_toolbars_group_remove_toolbar),
(ephy_toolbars_group_remove_item),
(ephy_toolbars_group_set_source), (is_item_in_toolbars),
(ephy_toolbars_group_foreach_available),
(ephy_toolbars_group_foreach_toolbar),
(ephy_toolbars_group_foreach_item), (ephy_toolbars_group_get_path):
* src/toolbar.c: (toolbar_get_action):
Add lots of debug code to solve these damned crashes.
Dont create multiple actions for the same bookmark.
There are two crashes that I can repro now. 1 Adding bookmarks
with more then one toolbar opened, and then open tbe.
2 Add multiple "links" to the same bookmark and then close.
But I'm sure xan can find more ;)
Diffstat (limited to 'src/toolbar.c')
-rwxr-xr-x | src/toolbar.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/toolbar.c b/src/toolbar.c index 5929d718a..eecac5c11 100755 --- a/src/toolbar.c +++ b/src/toolbar.c @@ -184,13 +184,6 @@ toolbar_get_action (EphyEditableToolbar *etoolbar, g_list_foreach (uris, (GFunc)g_free, NULL); g_list_free (uris); } - else if (g_str_has_prefix (name, "GoBookmarkId")) - { - if (ephy_str_to_int (name + strlen ("GoBookmarkId"), &id)) - { - action = get_bookmark_action (t, bookmarks, id); - } - } if (action == NULL) { @@ -198,6 +191,14 @@ toolbar_get_action (EphyEditableToolbar *etoolbar, (parent_class)->get_action (etoolbar, type, name); } + if (action == NULL && g_str_has_prefix (name, "GoBookmarkId")) + { + if (ephy_str_to_int (name + strlen ("GoBookmarkId"), &id)) + { + action = get_bookmark_action (t, bookmarks, id); + } + } + return action; } |