Code

screen_browser: added constant playlist_format
authorMax Kellermann <max@duempel.org>
Thu, 2 Oct 2008 17:11:15 +0000 (19:11 +0200)
committerMax Kellermann <max@duempel.org>
Thu, 2 Oct 2008 17:11:15 +0000 (19:11 +0200)
Moved the format string for playlist files to the constant
"playlist_format".

src/screen_browser.c

index b32210029efe034c8708351aae96f619a8ab8279..1350a56b4b7c134460be439c401cde6dc28c83be 100644 (file)
 
 #include <string.h>
 
-#define USE_OLD_LAYOUT
 #undef  USE_OLD_ADD
 
 #define BUFSIZE 1024
 
 #define HIGHLIGHT  (0x01)
 
+static const char playlist_format[] = "*%s*";
+
 /* clear the highlight flag for all items in the filelist */
 static void
 clear_highlights(mpdclient_filelist_t *fl)
@@ -149,11 +150,7 @@ browser_lw_callback(unsigned idx, int *highlight, void *data)
                mpd_PlaylistFile *plf = entity->info.playlistFile;
                char *filename = utf8_to_locale(basename(plf->path));
 
-#ifdef USE_OLD_LAYOUT
-               g_snprintf(buf, BUFSIZE, "*%s*", filename);
-#else
-               g_snprintf(buf, BUFSIZE, "<Playlist> %s", filename);
-#endif
+               g_snprintf(buf, BUFSIZE, playlist_format, filename);
                g_free(filename);
                return buf;
        }