about summary refs log tree commit diff stats
path: root/src/ui/windows.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-12-10 01:14:11 +0000
committerJames Booth <boothj5@gmail.com>2014-12-10 01:14:11 +0000
commit7b44ac97cc8894047f21233dcbec9a841a636876 (patch)
tree8fc448087a654799f8e0be0b23c5de6ed8661fe3 /src/ui/windows.c
parent0ce924465f491b16d58b1bbe61eef673ddd32eb4 (diff)
downloadprofani-tty-7b44ac97cc8894047f21233dcbec9a841a636876.tar.gz
Added form to WIN_MUC_CONFIG type
Diffstat (limited to 'src/ui/windows.c')
-rw-r--r--src/ui/windows.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/windows.c b/src/ui/windows.c
index 020745f7..ca7bad36 100644
--- a/src/ui/windows.c
+++ b/src/ui/windows.c
@@ -656,7 +656,7 @@ wins_create_summary(void)
             case WIN_MUC_CONFIG:
                 muc_config_string = g_string_new("");
                 g_string_printf(muc_config_string, "%d: %s", ui_index, window->from);
-                if ((window->form != NULL) && (window->form->modified)) {
+                if ((window->wins.conf.form) && (window->wins.conf.form->modified)) {
                     g_string_append(muc_config_string, " *");
                 }
                 result = g_slist_append(result, strdup(muc_config_string->str));