diff options
Diffstat (limited to 'protocols/Skype/src/skype_chat.h')
-rw-r--r-- | protocols/Skype/src/skype_chat.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Skype/src/skype_chat.h b/protocols/Skype/src/skype_chat.h index 7b1dcd0bf2..32687e4053 100644 --- a/protocols/Skype/src/skype_chat.h +++ b/protocols/Skype/src/skype_chat.h @@ -133,8 +133,6 @@ private: CSkypeProto *ppro;
- static wchar_t *Roles[];
-
ChatRoom(const wchar_t *cid);
inline static int CompareMembers(const ChatMember *p1, const ChatMember *p2) { return ChatMember::Compare(p1, p2); }
@@ -154,10 +152,12 @@ public: ChatMember *sys;
CConversation::Ref conversation;
+ static wchar_t *Roles[];
+
ChatRoom(const wchar_t *cid, const wchar_t *name, CSkypeProto *ppro);
~ChatRoom();
- static void Create(const StringList &invitedMembers, CSkypeProto *ppro, bool showWindow = false);
+ static void Create(const StringList &invitedMembers, CSkypeProto *ppro, ChatRoomParam *param);
void Start(const ConversationRef &conversation, bool showWindow = false);
|