summaryrefslogtreecommitdiff
path: root/src/channelmanager.h
diff options
context:
space:
mode:
authorErik Schilling <ablu.erikschilling@googlemail.com>2012-01-06 05:37:16 +0800
committerErik Schilling <ablu.erikschilling@googlemail.com>2012-01-06 21:41:32 +0800
commit7a9c5623cc4d69616321c87a7eeb0876694acafe (patch)
tree44d813d591f4e7c7b5a0006717a778a2ce2c8bb5 /src/channelmanager.h
parent440e43491c5abcfcd7bf502d68d4e0d83eb6790b (diff)
downloadmana-client-7a9c5623cc4d69616321c87a7eeb0876694acafe.tar.gz
mana-client-7a9c5623cc4d69616321c87a7eeb0876694acafe.tar.bz2
mana-client-7a9c5623cc4d69616321c87a7eeb0876694acafe.tar.xz
mana-client-7a9c5623cc4d69616321c87a7eeb0876694acafe.zip
Made announcements spreading over all whispers and channels
Resolves: Mana-mantis #430. Reviewed-by: Bertram.
Diffstat (limited to 'src/channelmanager.h')
-rw-r--r--src/channelmanager.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/channelmanager.h b/src/channelmanager.h
index aeb66a9a..744e48cb 100644
--- a/src/channelmanager.h
+++ b/src/channelmanager.h
@@ -26,6 +26,7 @@
#include <string>
class Channel;
+class ChatWindow;
class ChannelManager
{
@@ -40,6 +41,7 @@ public:
void removeChannel(Channel *channel);
private:
+ friend class ChatWindow;
std::list<Channel*> mChannels;
};