summaryrefslogtreecommitdiff
path: root/src/channel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/channel.h')
-rw-r--r--src/channel.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/channel.h b/src/channel.h
index 3ffd5326e..7dae64722 100644
--- a/src/channel.h
+++ b/src/channel.h
@@ -23,6 +23,8 @@
#ifndef CHANNEL_H
#define CHANNEL_H
+#include "gui/widgets/widget2.h"
+
#include <string>
#include "localconsts.h"
@@ -39,7 +41,8 @@ class Channel final
* @param name the name of the channel.
* @param announcement a welcome message.
*/
- Channel(const short id,
+ Channel(const Widget2 *const widget,
+ const short id,
const std::string &name,
const std::string &announcement = std::string());