aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/bookmarks/ephy-bookmarks-export.c2
-rw-r--r--src/bookmarks/ephy-bookmarks.c4
-rw-r--r--src/ephy-automation.c2
3 files changed, 5 insertions, 3 deletions
diff --git a/src/bookmarks/ephy-bookmarks-export.c b/src/bookmarks/ephy-bookmarks-export.c
index 3403a1931..e17a67dc0 100644
--- a/src/bookmarks/ephy-bookmarks-export.c
+++ b/src/bookmarks/ephy-bookmarks-export.c
@@ -137,6 +137,6 @@ ephy_bookmarks_export_rdf (EphyBookmarks *bookmarks,
}
ephy_node_thaw (bmks);
- xmlSaveFormatFile (filename, doc, 1);
+ ephy_file_save_xml (filename, doc);
xmlFreeDoc(doc);
}
diff --git a/src/bookmarks/ephy-bookmarks.c b/src/bookmarks/ephy-bookmarks.c
index 9e7c9dacc..b83c29888 100644
--- a/src/bookmarks/ephy-bookmarks.c
+++ b/src/bookmarks/ephy-bookmarks.c
@@ -339,7 +339,7 @@ ephy_bookmarks_save (EphyBookmarks *eb)
}
ephy_node_thaw (eb->priv->bookmarks);
- xmlSaveFormatFile (eb->priv->xml_file, doc, 1);
+ ephy_file_save_xml (eb->priv->xml_file, doc);
xmlFreeDoc(doc);
/* Export bookmarks in rdf */
@@ -482,6 +482,7 @@ bookmarks_changed_cb (EphyNode *node,
static void
bookmarks_removed_cb (EphyNode *node,
EphyNode *child,
+ guint old_index,
EphyBookmarks *eb)
{
long id;
@@ -544,6 +545,7 @@ update_topics_list (EphyNode *bookmark, const char *list)
static void
topics_removed_cb (EphyNode *node,
EphyNode *child,
+ guint old_index,
EphyBookmarks *eb)
{
long id;
diff --git a/src/ephy-automation.c b/src/ephy-automation.c
index 96ed5f2d3..0fbea13bb 100644
--- a/src/ephy-automation.c
+++ b/src/ephy-automation.c
@@ -120,7 +120,7 @@ impl_ephy_automation_loadurl (PortableServer_Servant _servant,
}
else
{
- flags |= EPHY_NEW_TAB_NEW_PAGE;
+ flags |= EPHY_NEW_TAB_OPEN_PAGE;
}
if (open_in_new_tab)