aboutsummaryrefslogtreecommitdiffstats
path: root/src/MessageCommands.hxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/MessageCommands.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/MessageCommands.hxx b/src/MessageCommands.hxx
index b10f3d8e8..150e0a2a2 100644
--- a/src/MessageCommands.hxx
+++ b/src/MessageCommands.hxx
@@ -25,18 +25,18 @@
class Client;
enum command_return
-handle_subscribe(Client *client, int argc, char *argv[]);
+handle_subscribe(Client &client, int argc, char *argv[]);
enum command_return
-handle_unsubscribe(Client *client, int argc, char *argv[]);
+handle_unsubscribe(Client &client, int argc, char *argv[]);
enum command_return
-handle_channels(Client *client, int argc, char *argv[]);
+handle_channels(Client &client, int argc, char *argv[]);
enum command_return
-handle_read_messages(Client *client, int argc, char *argv[]);
+handle_read_messages(Client &client, int argc, char *argv[]);
enum command_return
-handle_send_message(Client *client, int argc, char *argv[]);
+handle_send_message(Client &client, int argc, char *argv[]);
#endif