summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2009-12-16 08:38:27 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2009-12-16 08:38:27 +0000
commit4e89025935fc155d35d1bffb88c028892181f58c (patch)
tree3d94b18adb805d6cb98cee47de10bf290ffbb9be
parente425371e10c5c18a1996fe7adfb4184a09ebbd8a (diff)
downloadrockbox-4e89025935fc155d35d1bffb88c028892181f58c.tar.gz
rockbox-4e89025935fc155d35d1bffb88c028892181f58c.zip
get rid of the filename in the delete bookmark confirmation as its not really helpful
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24023 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/bookmark.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c
index 1d8e499bce..d4bca415b4 100644
--- a/apps/bookmark.c
+++ b/apps/bookmark.c
@@ -765,16 +765,14 @@ static char* select_bookmark(const char* bookmark_file_name, bool show_dont_resu
765 if (item >= 0) 765 if (item >= 0)
766 { 766 {
767 const char *lines[]={ 767 const char *lines[]={
768 ID2P(LANG_REALLY_DELETE), 768 ID2P(LANG_REALLY_DELETE)
769 bookmark_file_name
770 }; 769 };
771 const char *yes_lines[]={ 770 const char *yes_lines[]={
772 ID2P(LANG_DELETING), 771 ID2P(LANG_DELETING)
773 bookmark_file_name
774 }; 772 };
775 773
776 const struct text_message message={lines, 2}; 774 const struct text_message message={lines, 1};
777 const struct text_message yes_message={yes_lines, 2}; 775 const struct text_message yes_message={yes_lines, 1};
778 776
779 if(gui_syncyesno_run(&message, &yes_message, NULL)==YESNO_YES) 777 if(gui_syncyesno_run(&message, &yes_message, NULL)==YESNO_YES)
780 { 778 {