summaryrefslogtreecommitdiff
path: root/navit/bookmarks.h
diff options
context:
space:
mode:
authorakashihi <akashihi@ffa7fe5e-494d-0410-b361-a75ebd5db220>2010-04-28 12:50:38 +0000
committerakashihi <akashihi@ffa7fe5e-494d-0410-b361-a75ebd5db220>2010-04-28 12:50:38 +0000
commitfa2fd33cfa1c431d71ea78fb0b3944135b722347 (patch)
treea4eb0ab9f643267abd3e715da9e2b65c8e39e33d /navit/bookmarks.h
parent02f1a2de9b4a6cdfa9870191dabed0eaf8589c6e (diff)
downloadnavit-fa2fd33cfa1c431d71ea78fb0b3944135b722347.tar.gz
Fix:core:Bookmark cut/copy/delete operations are hierarchy-aware now
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@3203 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'navit/bookmarks.h')
-rw-r--r--navit/bookmarks.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/navit/bookmarks.h b/navit/bookmarks.h
index 3a63d44b2..7bf9a33c3 100644
--- a/navit/bookmarks.h
+++ b/navit/bookmarks.h
@@ -31,11 +31,11 @@ void bookmarks_destroy(struct bookmarks *this_);
void bookmarks_add_callback(struct bookmarks *this_, struct callback *cb);
int bookmarks_add_bookmark(struct bookmarks *this_, struct pcoord *c, const char *description);
-int bookmarks_cut_bookmark(struct bookmarks *this_, const char *description);
-int bookmarks_copy_bookmark(struct bookmarks *this_, const char *description);
+int bookmarks_cut_bookmark(struct bookmarks *this_, const char *label);
+int bookmarks_copy_bookmark(struct bookmarks *this_, const char *label);
int bookmarks_paste_bookmark(struct bookmarks *this_, const char *path);
int bookmarks_rename_bookmark(struct bookmarks *this_, const char *oldName, const char* newName);
-int bookmarks_del_bookmark(struct bookmarks *this_, const char *description);
+int bookmarks_delete_bookmark(struct bookmarks *this_, const char *label);
struct map* bookmarks_get_map(struct bookmarks *this_);
enum projection bookmarks_get_projection(struct bookmarks *this_);