summaryrefslogtreecommitdiff
path: root/libslab/bookmark-agent.c
diff options
context:
space:
mode:
authormonsta <[email protected]>2017-12-24 15:55:43 +0300
committermonsta <[email protected]>2017-12-24 15:55:43 +0300
commitf0e8a4529f08c43a6d7d6fb7501ac7d83342ae2e (patch)
treeaeb3c028ef03b901aaeace1707f4e2d2d5debecb /libslab/bookmark-agent.c
parentd68834a740cb3ac396dea12f1d4cb73d309a240e (diff)
downloadmate-control-center-f0e8a4529f08c43a6d7d6fb7501ac7d83342ae2e.tar.bz2
mate-control-center-f0e8a4529f08c43a6d7d6fb7501ac7d83342ae2e.tar.xz
libslab: drop useless checkpoint function
Diffstat (limited to 'libslab/bookmark-agent.c')
-rw-r--r--libslab/bookmark-agent.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/libslab/bookmark-agent.c b/libslab/bookmark-agent.c
index a2d0033f..9c2cbb40 100644
--- a/libslab/bookmark-agent.c
+++ b/libslab/bookmark-agent.c
@@ -361,8 +361,6 @@ bookmark_agent_update_from_bookmark_file (BookmarkAgent *this, GBookmarkFile *st
priv = PRIVATE (this);
- libslab_checkpoint ("bookmark_agent_update_from_bookmark_file(): start updating");
-
items_ordered = make_items_from_bookmark_file (this, store);
g_bookmark_file_free (priv->store);
@@ -381,10 +379,7 @@ bookmark_agent_update_from_bookmark_file (BookmarkAgent *this, GBookmarkFile *st
g_list_free (items_ordered);
- libslab_checkpoint ("bookmark_agent_update_from_bookmark_file(): updating internal items");
update_items (this);
-
- libslab_checkpoint ("bookmark_agent_update_from_bookmark_file(): end updating");
}
void
@@ -840,9 +835,7 @@ load_xbel_store (BookmarkAgent *this)
if (!priv->store_path)
success = FALSE;
else {
- libslab_checkpoint ("load_xbel_store(): start loading %s", priv->store_path);
success = g_bookmark_file_load_from_file (priv->store, priv->store_path, & error);
- libslab_checkpoint ("load_xbel_store(): end loading %s", priv->store_path);
}
if (!success) {
@@ -856,16 +849,12 @@ load_xbel_store (BookmarkAgent *this)
return;
}
- libslab_checkpoint ("load_xbel_store(): start creating items from %s", priv->store_path);
-
uris = g_bookmark_file_get_uris (priv->store, NULL);
for (i = 0; uris && uris [i]; ++i)
priv->create_item (this, uris [i]);
g_strfreev (uris);
-
- libslab_checkpoint ("load_xbel_store(): end creating items from %s", priv->store_path);
}
static void