aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-toolbars-model.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ephy-toolbars-model.c')
-rwxr-xr-xsrc/ephy-toolbars-model.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-toolbars-model.c b/src/ephy-toolbars-model.c
index 43a081e22..f2eacbe20 100755
--- a/src/ephy-toolbars-model.c
+++ b/src/ephy-toolbars-model.c
@@ -91,7 +91,7 @@ impl_add_item (EggToolbarsModel *t,
topic = TRUE;
nodes = ephy_dnd_node_list_extract_nodes (name);
- id = ephy_node_get_id (EPHY_NODE (nodes->data));
+ id = ephy_node_get_id (nodes->data);
action_name = g_strdup_printf ("GoTopicId%d", id);
g_list_free (nodes);
}
@@ -100,7 +100,7 @@ impl_add_item (EggToolbarsModel *t,
GList *nodes;
nodes = ephy_dnd_node_list_extract_nodes (name);
- id = ephy_node_get_id (EPHY_NODE (nodes->data));
+ id = ephy_node_get_id (nodes->data);
action_name = g_strdup_printf ("GoBookmarkId%d", id);
g_list_free (nodes);
}