diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-04-29 16:50:19 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-04-29 16:50:19 +0800 |
commit | 56b18a72cbde121e7999846d99bb3e8eb91d4068 (patch) | |
tree | ee9ad4aa70d426a2d2c9060c2bc189a43e416698 /lib/widgets/ephy-node-view.h | |
parent | fefbbb55910beadb0e568e917d3736cd5c62d31a (diff) | |
download | gsoc2013-epiphany-56b18a72cbde121e7999846d99bb3e8eb91d4068.tar gsoc2013-epiphany-56b18a72cbde121e7999846d99bb3e8eb91d4068.tar.gz gsoc2013-epiphany-56b18a72cbde121e7999846d99bb3e8eb91d4068.tar.bz2 gsoc2013-epiphany-56b18a72cbde121e7999846d99bb3e8eb91d4068.tar.lz gsoc2013-epiphany-56b18a72cbde121e7999846d99bb3e8eb91d4068.tar.xz gsoc2013-epiphany-56b18a72cbde121e7999846d99bb3e8eb91d4068.tar.zst gsoc2013-epiphany-56b18a72cbde121e7999846d99bb3e8eb91d4068.zip |
Remove add_icon_column func and add the functionality to the normal
2003-04-29 Marco Pesenti Gritti <marco@it.gnome.org>
* lib/widgets/ephy-node-view.c: (ephy_node_view_add_column):
* lib/widgets/ephy-node-view.h:
Remove add_icon_column func and add the functionality to the
normal add_column. The icon will be packed in the same column.
* src/bookmarks/ephy-bookmarks-editor.c:
(entry_selection_changed_cb), (add_entry_monitor),
(add_text_renderer_monitor), (cmd_add_topic), (cmd_rename),
(build_search_box), (ephy_bookmarks_editor_construct),
(toolbar_items_changed_cb), (ephy_bookmarks_editor_init):
Fix for api change.
Deal with 2 more sensitivity cases:
bookmarks added by dnd to the toolbar and treeview text
renderers.
Remove hints until we have more columns.
* src/ephy-history-window.c: (ephy_history_window_construct):
Fix for new api
* src/ephy-toolbars-model.c: (impl_add_item):
Dont check if normal items are already in the toolbar:
fix warnings.
Diffstat (limited to 'lib/widgets/ephy-node-view.h')
-rw-r--r-- | lib/widgets/ephy-node-view.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/widgets/ephy-node-view.h b/lib/widgets/ephy-node-view.h index f19f8cc30..100f8fc25 100644 --- a/lib/widgets/ephy-node-view.h +++ b/lib/widgets/ephy-node-view.h @@ -81,10 +81,8 @@ GtkTreeViewColumn *ephy_node_view_add_column (EphyNodeView *view, GType value_type, int prop_id, int priority_prop_id, - EphyNodeViewFlags flags); - -void ephy_node_view_add_icon_column (EphyNodeView *view, - EphyTreeModelNodeValueFunc func); + EphyNodeViewFlags flags, + EphyTreeModelNodeValueFunc icon_func); void ephy_node_view_remove (EphyNodeView *view); |