about summary refs log tree commit diff stats
path: root/src/ui/window.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/window.h')
-rw-r--r--src/ui/window.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/ui/window.h b/src/ui/window.h
index 39df44d7..5acade5e 100644
--- a/src/ui/window.h
+++ b/src/ui/window.h
@@ -61,6 +61,7 @@
 #define PROFMUCWIN_MEMCHECK         52345276
 #define PROFPRIVATEWIN_MEMCHECK     77437483
 #define PROFCONFWIN_MEMCHECK        64334685
+#define PROFXMLWIN_MEMCHECK         87333463
 
 typedef enum {
     LAYOUT_SIMPLE,
@@ -103,7 +104,6 @@ typedef struct prof_win_t {
 
 typedef struct prof_console_win_t {
     ProfWin window;
-    char *from;
 } ProfConsoleWin;
 
 typedef struct prof_chat_win_t {
@@ -124,7 +124,7 @@ typedef struct prof_muc_win_t {
 
 typedef struct prof_mucconf_win_t {
     ProfWin window;
-    char *from;
+    char *roomjid;
     DataForm *form;
     unsigned long memcheck;
 } ProfMucConfWin;
@@ -137,7 +137,7 @@ typedef struct prof_private_win_t {
 
 typedef struct prof_xml_win_t {
     ProfWin window;
-    char *from;
+    unsigned long memcheck;
 } ProfXMLWin;
 
 ProfWin* win_create_console(void);
@@ -147,6 +147,8 @@ ProfWin* win_create_muc_config(const char * const title, DataForm *form);
 ProfWin* win_create_private(const char * const fulljid);
 ProfWin* win_create_xmlconsole(void);
 
+char *win_get_title(ProfWin *window);
+
 void win_free(ProfWin *window);
 void win_update_virtual(ProfWin *window);
 void win_move_to_end(ProfWin *window);
@@ -170,7 +172,6 @@ void win_show_subwin(ProfWin *window);
 int win_roster_cols(void);
 int win_occpuants_cols(void);
 void win_printline_nowrap(WINDOW *win, char *msg);
-GString* win_get_recipient_string(ProfWin *window);
 
 gboolean win_has_active_subwin(ProfWin *window);
 gboolean win_has_modified_form(ProfWin *window);