about summary refs log tree commit diff stats
path: root/src/xmpp
diff options
context:
space:
mode:
authorPaul Fariello <paul@fariello.eu>2018-04-11 22:17:50 +0520
committerPaul Fariello <paul@fariello.eu>2018-09-05 13:51:00 +0200
commita952776b899dd29056ad6779b14dab75a4125924 (patch)
tree305ff2a8375459633b5bbeb79f856c9564c136a6 /src/xmpp
parent7123e94e82e1408b9abab1a9043617f58d396849 (diff)
downloadprofani-tty-a952776b899dd29056ad6779b14dab75a4125924.tar.gz
Rename mucconf wins into conf wins
Configuration windows are now being used by both muc and cmd.
Diffstat (limited to 'src/xmpp')
-rw-r--r--src/xmpp/iq.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xmpp/iq.c b/src/xmpp/iq.c
index f5bacddd..60c19b88 100644
--- a/src/xmpp/iq.c
+++ b/src/xmpp/iq.c
@@ -1152,8 +1152,8 @@ _command_exec_response_handler(xmpp_stanza_t *const stanza, void *const userdata
         }
 
         DataForm *form = form_create(x);
-        ProfMucConfWin *confwin = (ProfMucConfWin*)wins_new_muc_config(from, form);
-        mucconfwin_handle_configuration(confwin, form);
+        ProfConfWin *confwin = (ProfConfWin*)wins_new_config(from, form);
+        confwin_handle_configuration(confwin, form);
     }
 
     if (g_strcmp0(status, "canceled") == 0) {
@@ -1693,8 +1693,8 @@ _room_config_id_handler(xmpp_stanza_t *const stanza, void *const userdata)
     }
 
     DataForm *form = form_create(x);
-    ProfMucConfWin *confwin = (ProfMucConfWin*)wins_new_muc_config(from, form);
-    mucconfwin_handle_configuration(confwin, form);
+    ProfConfWin *confwin = (ProfConfWin*)wins_new_config(from, form);
+    confwin_handle_configuration(confwin, form);
 
     return 0;
 }