Code

command.c: put curly braces around a single large statement
[ncmpc.git] / src / screen_keydef.c
index 71efe48e2b9dd71948d25f17f6e228d762314dde..8ecc003ac94cc0493a0c6daaef125dafc9cb5769 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
@@ -190,7 +190,7 @@ assign_new_key(int cmd_index, int key_index)
 }
 
 static const char *
-list_callback(unsigned idx, bool *highlight, G_GNUC_UNUSED char** sc, G_GNUC_UNUSED void *data)
+list_callback(unsigned idx, G_GNUC_UNUSED void *data)
 {
        static char buf[BUFSIZE];
 
@@ -202,8 +202,6 @@ list_callback(unsigned idx, bool *highlight, G_GNUC_UNUSED char** sc, G_GNUC_UNU
 
                assert(idx < (unsigned)command_list_length);
 
-               if (cmds[idx].flags & COMMAND_KEY_CONFLICT)
-                       *highlight = true;
                return cmds[idx].name;
        } else {
                if (idx == 0)
@@ -235,8 +233,7 @@ keydef_init(WINDOW *w, int cols, int rows)
 static void
 keydef_resize(int cols, int rows)
 {
-       lw->cols = cols;
-       lw->rows = rows;
+       list_window_resize(lw, cols, rows);
 }
 
 static void