about summary refs log tree commit diff stats
path: root/src/ui/core.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-06-03 21:14:21 +0100
committerJames Booth <boothj5@gmail.com>2014-06-03 21:14:21 +0100
commit8ae6d359d7000c8c950859777c9e953e76bfc871 (patch)
tree499f62b03fb055e2fd19f5dfb8c915bbfd1bf0d0 /src/ui/core.c
parent17c73814ac2e878bea013dd24e014a9f3278dbec (diff)
downloadprofani-tty-8ae6d359d7000c8c950859777c9e953e76bfc871.tar.gz
Moved info display code to window.c
Diffstat (limited to 'src/ui/core.c')
-rw-r--r--src/ui/core.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ui/core.c b/src/ui/core.c
index 8f946d68..511facfb 100644
--- a/src/ui/core.c
+++ b/src/ui/core.c
@@ -1832,7 +1832,20 @@ _ui_status_room(const char * const contact)
         win_vprint_line(current, '-', 0, "No such participant \"%s\" in room.", contact);
     }
 }
+/*
+static void
+_ui_info_room(const char * const contact)
+{
+    PContact pcontact = muc_get_participant(ui_current_recipient(), contact);
+    ProfWin *current = wins_get_current();
 
+    if (pcontact != NULL) {
+        win_show_info(current, pcontact);
+    } else {
+        win_vprint_line(current, '-', 0, "No such participant \"%s\" in room.", contact);
+    }
+}
+*/
 static gint
 _ui_unread(void)
 {