summaryrefslogtreecommitdiff
path: root/apps/dbtree.c
diff options
context:
space:
mode:
authorKevin Ferrare <kevin@rockbox.org>2005-11-16 15:12:15 +0000
committerKevin Ferrare <kevin@rockbox.org>2005-11-16 15:12:15 +0000
commite991beed6df8700b41796c4c14ef786f45fb54c5 (patch)
tree63543693276236f18a91c3de87e2353625eb85dc /apps/dbtree.c
parent76b75efa060b55bc7cbf66bae3401af57d907440 (diff)
downloadrockbox-e991beed6df8700b41796c4c14ef786f45fb54c5.tar.gz
rockbox-e991beed6df8700b41796c4c14ef786f45fb54c5.zip
replaced all the splash calls by gui_sync_splash, added some missing remote key in the playlist viewer
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7909 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/dbtree.c')
-rw-r--r--apps/dbtree.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/dbtree.c b/apps/dbtree.c
index 9ea0706245..9115c5902c 100644
--- a/apps/dbtree.c
+++ b/apps/dbtree.c
@@ -44,6 +44,7 @@
44#include "keyboard.h" 44#include "keyboard.h"
45#include "autoconf.h" 45#include "autoconf.h"
46#include "list.h" 46#include "list.h"
47#include "splash.h"
47 48
48static int db_play_folder(struct tree_context* c); 49static int db_play_folder(struct tree_context* c);
49static int db_search(struct tree_context* c, char* string); 50static int db_search(struct tree_context* c, char* string);
@@ -130,13 +131,13 @@ int db_load(struct tree_context* c)
130 i = db_search(c, searchstring); 131 i = db_search(c, searchstring);
131 c->dirlength = c->filesindir = i; 132 c->dirlength = c->filesindir = i;
132 if (c->dirfull) { 133 if (c->dirfull) {
133 splash(HZ, true, "%s %s", 134 gui_syncsplash(HZ, true, "%s %s",
134 str(LANG_SHOWDIR_ERROR_BUFFER), 135 str(LANG_SHOWDIR_ERROR_BUFFER),
135 str(LANG_SHOWDIR_ERROR_FULL)); 136 str(LANG_SHOWDIR_ERROR_FULL));
136 c->dirfull = false; 137 c->dirfull = false;
137 } 138 }
138 else 139 else
139 splash(HZ, true, str(LANG_ID3DB_MATCHES), i); 140 gui_syncsplash(HZ, true, str(LANG_ID3DB_MATCHES), i);
140 return i; 141 return i;
141 142
142 case allsongs: 143 case allsongs: