diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2013-06-15 08:39:27 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2013-06-15 08:39:27 +0000 |
commit | 02fa05ac26b620ebf5a761f8f7b4244e54309607 (patch) | |
tree | 41c89a4fb1028bb903c379eeb423887819c56c3b /protocols/Skype/src/skype_chat.h | |
parent | 45bef0474cd2f5767f74478db076c0ad8420e0ff (diff) |
Skype: new extended chat creation dialog
git-svn-id: http://svn.miranda-ng.org/main/trunk@4951 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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);
|