From 4e89025935fc155d35d1bffb88c028892181f58c Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Wed, 16 Dec 2009 08:38:27 +0000 Subject: 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 --- apps/bookmark.c | 10 ++++------ 1 file 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 if (item >= 0) { const char *lines[]={ - ID2P(LANG_REALLY_DELETE), - bookmark_file_name + ID2P(LANG_REALLY_DELETE) }; const char *yes_lines[]={ - ID2P(LANG_DELETING), - bookmark_file_name + ID2P(LANG_DELETING) }; - const struct text_message message={lines, 2}; - const struct text_message yes_message={yes_lines, 2}; + const struct text_message message={lines, 1}; + const struct text_message yes_message={yes_lines, 1}; if(gui_syncyesno_run(&message, &yes_message, NULL)==YESNO_YES) { -- cgit v1.2.3