Code

screen_find.c: fix backspace bug
[ncmpc.git] / src / screen_list.c
index 49f6037800cf2812d62777929e11706bdc568f16..4afbceac04ff5a55dbfc8b429020770fac77688d 100644 (file)
@@ -1,5 +1,5 @@
 /* ncmpc (Ncurses MPD Client)
- * (c) 2004-2009 The Music Player Daemon Project
+ * (c) 2004-2010 The Music Player Daemon Project
  * Project homepage: http://musicpd.org
  
  * This program is free software; you can redistribute it and/or modify
 #include "screen_list.h"
 #include "screen_interface.h"
 #include "screen.h"
+#include "screen_help.h"
+#include "screen_queue.h"
+#include "screen_file.h"
+#include "screen_artist.h"
+#include "screen_search.h"
+#include "screen_song.h"
+#include "screen_keydef.h"
+#include "screen_lyrics.h"
+#include "screen_outputs.h"
 
 #include <string.h>
 
@@ -28,7 +37,7 @@ static const struct
        const char *name;
        const struct screen_functions *functions;
 } screens[] = {
-       { "playlist", &screen_playlist },
+       { "playlist", &screen_queue },
        { "browse", &screen_browse },
 #ifdef ENABLE_ARTIST_SCREEN
        { "artist", &screen_artist },