diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2004-06-24 18:03:31 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2004-06-24 18:03:31 +0800 |
commit | 61578d1e428abbd67ba292fcfe7310a71274ae10 (patch) | |
tree | ad6dffbccd58e46c788894ab91d4402284647cf7 /src/bookmarks/ephy-bookmarks-editor.c | |
parent | 6fcf143b625f3423798bea58621a231446eac361 (diff) | |
download | gsoc2013-epiphany-61578d1e428abbd67ba292fcfe7310a71274ae10.tar gsoc2013-epiphany-61578d1e428abbd67ba292fcfe7310a71274ae10.tar.gz gsoc2013-epiphany-61578d1e428abbd67ba292fcfe7310a71274ae10.tar.bz2 gsoc2013-epiphany-61578d1e428abbd67ba292fcfe7310a71274ae10.tar.lz gsoc2013-epiphany-61578d1e428abbd67ba292fcfe7310a71274ae10.tar.xz gsoc2013-epiphany-61578d1e428abbd67ba292fcfe7310a71274ae10.tar.zst gsoc2013-epiphany-61578d1e428abbd67ba292fcfe7310a71274ae10.zip |
Use guint consistently for node ids
2004-06-24 Marco Pesenti Gritti <marco@gnome.org>
* lib/ephy-node.c: (ephy_node_new_with_id), (ephy_node_get_id),
(child_changed), (write_parent):
* lib/ephy-node.h:
* src/bookmarks/ephy-bookmark-action.c:
(bookmarks_child_changed_cb):
* src/bookmarks/ephy-bookmark-properties.c:
(toolbar_checkbox_changed_cb), (build_ui):
* src/bookmarks/ephy-bookmarks-editor.c:
(cmd_show_in_bookmarks_bar), (ephy_bookmarks_editor_update_menu):
* src/bookmarks/ephy-bookmarks-menu.c: (create_menu),
(topic_child_changed_cb):
* src/bookmarks/ephy-new-bookmark.c:
* src/bookmarks/ephy-new-bookmark.h:
* src/bookmarks/ephy-topic-action.c:
(ephy_topic_action_set_topic_id), (topic_child_changed_cb):
Use guint consistently for node ids
Diffstat (limited to 'src/bookmarks/ephy-bookmarks-editor.c')
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index 810bb9cb2..a22ae3191 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -345,7 +345,7 @@ cmd_show_in_bookmarks_bar (GtkAction *action, EphyNode *node; GList *selection; gboolean state, topic; - gulong id; + guint id; if (ephy_node_view_is_target (EPHY_NODE_VIEW (editor->priv->bm_view))) { @@ -1001,7 +1001,7 @@ ephy_bookmarks_editor_update_menu (EphyBookmarksEditor *editor) { EphyNode *node = selected->data; EphyNodePriority priority; - gulong id; + guint id; id = ephy_node_get_id (node); show_in_bookmarks_bar = ephy_bookmarksbar_model_has_bookmark @@ -1019,7 +1019,7 @@ ephy_bookmarks_editor_update_menu (EphyBookmarksEditor *editor) if (bmk_focus && selected) { EphyNode *node = selected->data; - gulong id; + guint id; g_return_if_fail (node != NULL); |