home · contact · privacy
Define server messages and server message arguments in confclient/commands, instead...
[plomrogue] / src / client / draw_wins.c
index c61576c0370679d80ebafdfbeb08c3a71dfa4064..1ad1ab2e20d0918723e3553da5f8d63469ac7577 100644 (file)
@@ -7,7 +7,7 @@
 #include <stdlib.h> /* free() */
 #include <string.h> /* strlen(), strtok() */
 #include "../common/try_malloc.h" /* for try_malloc() */
-#include "command_db.h" /* for get_command_longdsc */
+#include "command_db.h" /* get_command_data() */
 #include "keybindings.h" /* struct KeyBinding, get_keyname_to_keycode() */
 #include "wincontrol.h" /* struct WinConf, get_winconf_by_win() */
 #include "windows.h" /* struct Win */
@@ -237,7 +237,8 @@ static char * get_kb_line_and_iterate(struct KeyBinding ** kb_pp)
     char * f_name = "get_kb_line_and_iterate()";
     struct KeyBinding * kb_p = * kb_pp;
     char * keyname = get_keyname_to_keycode(kb_p->key);
-    char * cmd_dsc = get_command_longdsc(kb_p->command);
+    struct Command * command_data = get_command_data(kb_p->command);
+    char * cmd_dsc = command_data->dsc_long;
     uint16_t size = 9 + 1 + strlen(cmd_dsc) + 1;
     char * line = try_malloc(size, f_name);
     sprintf(line, "%-9s %s", keyname, cmd_dsc);