summary refs log tree commit diff stats
path: root/src/common/outbound.h
diff options
context:
space:
mode:
authorDiogo Sousa <diogogsousa@gmail.com>2013-10-10 19:51:33 +0100
committerTingPing <tingping@tingping.se>2013-10-13 14:38:26 -0400
commitcf370d7e79d897f1d41e0b949385dbf3e595d3ed (patch)
tree28063eca35a566fccf43d74b87df9e91e83f1f32 /src/common/outbound.h
parentfd13e4046f508e9ebe4eb463966ff2858f053cdd (diff)
When opening a query dialog with /query nick msg, the message was not shown in
the newly opened dialog. This fixes that issue.
Diffstat (limited to 'src/common/outbound.h')
-rw-r--r--src/common/outbound.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/outbound.h b/src/common/outbound.h
index 81a98666..b9fe6331 100644
--- a/src/common/outbound.h
+++ b/src/common/outbound.h
@@ -20,6 +20,8 @@
 #ifndef HEXCHAT_OUTBOUND_H
 #define HEXCHAT_OUTBOUND_H
 
+#include "hexchat.h"
+
 extern const struct commands xc_cmds[];
 extern GSList *menu_list;
 
@@ -34,7 +36,7 @@ void notc_msg (session *sess);
 void server_sendpart (server * serv, char *channel, char *reason);
 void server_sendquit (session * sess);
 int menu_streq (const char *s1, const char *s2, int def);
-void open_query (server *serv, char *nick, gboolean focus_existing);
+session *open_query (server *serv, char *nick, gboolean focus_existing);
 gboolean load_perform_file (session *sess, char *file);
 
 #endif