diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2013-06-07 09:24:01 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2013-06-07 09:24:01 +0000 |
commit | 9f53b4ab59d8183b9064ac65ab46a87932b5cf34 (patch) | |
tree | 8e82a64936c7c69daa350ba2e8cedf243a1b5178 /protocols/Skype/src/skype_chat.h | |
parent | 895719cc6b7dbd4be1852f5476705172d538aabf (diff) |
Skype:
- fixed encoding in name of received files
- some chat improvements
git-svn-id: http://svn.miranda-ng.org/main/trunk@4890 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, 4 insertions, 2 deletions
diff --git a/protocols/Skype/src/skype_chat.h b/protocols/Skype/src/skype_chat.h index 134823e343..75fec78dcd 100644 --- a/protocols/Skype/src/skype_chat.h +++ b/protocols/Skype/src/skype_chat.h @@ -11,6 +11,8 @@ public: int rank;
WORD status;
+ CParticipant::Ref participant;
+
ChatMember()
{
this->sid = NULL;
@@ -58,8 +60,6 @@ public: class ChatRoom
{
- friend class ChatList;
-
private:
wchar_t *cid;
wchar_t *name;
@@ -83,6 +83,8 @@ private: void AddMember(ChatMember *member, DWORD timestamp, int flag);
public:
+ CConversation::Ref conversation;
+
ChatRoom(const wchar_t *cid, const wchar_t *name, CSkypeProto *ppro);
~ChatRoom();
|