diff options
author | James Booth <boothj5@gmail.com> | 2015-11-02 22:19:01 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-11-02 22:19:01 +0000 |
commit | 38255e9be49f390bb10daff83bbfe244fd0bdaec (patch) | |
tree | 7b27eade461820f0c66f0777190c9aa165313e48 /src/command | |
parent | 9106029261cd48edbb6f020f920e1ff9a0ae62ce (diff) | |
download | profani-tty-38255e9be49f390bb10daff83bbfe244fd0bdaec.tar.gz |
Make all mucconfwin functions take ProfMucConfWin
Diffstat (limited to 'src/command')
-rw-r--r-- | src/command/commands.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/command/commands.c b/src/command/commands.c index 4b4b8249..c87e3eaa 100644 --- a/src/command/commands.c +++ b/src/command/commands.c @@ -2485,11 +2485,11 @@ cmd_form_field(ProfWin *window, char *tag, gchar **args) if (g_strcmp0(value, "on") == 0) { form_set_value(form, tag, "1"); ui_current_print_line("Field updated..."); - mucconfwin_show_form_field(window, form, tag); + mucconfwin_show_form_field(confwin, form, tag); } else if (g_strcmp0(value, "off") == 0) { form_set_value(form, tag, "0"); ui_current_print_line("Field updated..."); - mucconfwin_show_form_field(window, form, tag); + mucconfwin_show_form_field(confwin, form, tag); } else { ui_current_print_line("Invalid command, usage:"); mucconfwin_field_help(confwin, tag); @@ -2508,7 +2508,7 @@ cmd_form_field(ProfWin *window, char *tag, gchar **args) } else { form_set_value(form, tag, value); ui_current_print_line("Field updated..."); - mucconfwin_show_form_field(window, form, tag); + mucconfwin_show_form_field(confwin, form, tag); } break; case FIELD_LIST_SINGLE: @@ -2520,7 +2520,7 @@ cmd_form_field(ProfWin *window, char *tag, gchar **args) } else { form_set_value(form, tag, value); ui_current_print_line("Field updated..."); - mucconfwin_show_form_field(window, form, tag); + mucconfwin_show_form_field(confwin, form, tag); } break; @@ -2544,7 +2544,7 @@ cmd_form_field(ProfWin *window, char *tag, gchar **args) if (g_strcmp0(cmd, "add") == 0) { form_add_value(form, tag, value); ui_current_print_line("Field updated..."); - mucconfwin_show_form_field(window, form, tag); + mucconfwin_show_form_field(confwin, form, tag); break; } if (g_strcmp0(args[0], "remove") == 0) { @@ -2572,7 +2572,7 @@ cmd_form_field(ProfWin *window, char *tag, gchar **args) removed = form_remove_text_multi_value(form, tag, index); if (removed) { ui_current_print_line("Field updated..."); - mucconfwin_show_form_field(window, form, tag); + mucconfwin_show_form_field(confwin, form, tag); } else { ui_current_print_line("Could not remove %s from %s", value, tag); } @@ -2601,7 +2601,7 @@ cmd_form_field(ProfWin *window, char *tag, gchar **args) added = form_add_unique_value(form, tag, value); if (added) { ui_current_print_line("Field updated..."); - mucconfwin_show_form_field(window, form, tag); + mucconfwin_show_form_field(confwin, form, tag); } else { ui_current_print_line("Value %s already selected for %s", value, tag); } @@ -2618,7 +2618,7 @@ cmd_form_field(ProfWin *window, char *tag, gchar **args) removed = form_remove_value(form, tag, value); if (removed) { ui_current_print_line("Field updated..."); - mucconfwin_show_form_field(window, form, tag); + mucconfwin_show_form_field(confwin, form, tag); } else { ui_current_print_line("Value %s is not currently set for %s", value, tag); } @@ -2650,7 +2650,7 @@ cmd_form_field(ProfWin *window, char *tag, gchar **args) added = form_add_unique_value(form, tag, value); if (added) { ui_current_print_line("Field updated..."); - mucconfwin_show_form_field(window, form, tag); + mucconfwin_show_form_field(confwin, form, tag); } else { ui_current_print_line("JID %s already exists in %s", value, tag); } @@ -2660,7 +2660,7 @@ cmd_form_field(ProfWin *window, char *tag, gchar **args) removed = form_remove_value(form, tag, value); if (removed) { ui_current_print_line("Field updated..."); - mucconfwin_show_form_field(window, form, tag); + mucconfwin_show_form_field(confwin, form, tag); } else { ui_current_print_line("Field %s does not contain %s", tag, value); } |