about summary refs log tree commit diff stats
path: root/src/ui/window.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-01-08 20:27:18 +0000
committerJames Booth <boothj5@gmail.com>2014-01-08 20:27:18 +0000
commit4cc4461c0fbf310a329bdc78338c497716073fca (patch)
tree9c275e4e2e7d8731838d35ab63d6c357fea64d75 /src/ui/window.h
parentd99f1536ec4a3327a0a695d3034c5c1bfa7cf87a (diff)
downloadprofani-tty-4cc4461c0fbf310a329bdc78338c497716073fca.tar.gz
Removed handle error message function from ProfWin
Diffstat (limited to 'src/ui/window.h')
-rw-r--r--src/ui/window.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ui/window.h b/src/ui/window.h
index 5cca430e..4c97429a 100644
--- a/src/ui/window.h
+++ b/src/ui/window.h
@@ -52,8 +52,6 @@ typedef struct prof_win_t {
     int paged;
     int unread;
     int history_shown;
-    gboolean (*handle_error_message)(struct prof_win_t *self,
-        const char * const from, const char * const err_msg);
 } ProfWin;
 
 ProfWin* win_create(const char * const title, int cols, win_type_t type);
@@ -72,5 +70,8 @@ void win_show_status_string(ProfWin *window, const char * const from,
     const char * const default_show);
 void win_print_incoming_message(ProfWin *window, GTimeVal *tv_stamp,
     const char * const from, const char * const message);
+gboolean
+win_handle_error_message(ProfWin *window, const char * const from,
+    const char * const err_msg);
 
 #endif