diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2012-12-21 14:41:01 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2012-12-21 14:41:01 +0000 |
commit | b3e0d5a4ed673b3ad80da1934359ee8c6606e1f4 (patch) | |
tree | 23bcea1de64670d13ff8f6f811fddf3e60edd4be /protocols/Skype/src/skype_proto.cpp | |
parent | eea0e07f23b6a58b30f281254fdda119b4371fcb (diff) |
- sixed some issues with history, messages, chats and contacts
git-svn-id: http://svn.miranda-ng.org/main/trunk@2778 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_proto.cpp')
-rw-r--r-- | protocols/Skype/src/skype_proto.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Skype/src/skype_proto.cpp b/protocols/Skype/src/skype_proto.cpp index 54d43d56c9..ac249a8d8b 100644 --- a/protocols/Skype/src/skype_proto.cpp +++ b/protocols/Skype/src/skype_proto.cpp @@ -7,8 +7,8 @@ CSkypeProto::CSkypeProto(const char* protoName, const TCHAR* userName) this->m_tszUserName = mir_tstrdup(userName);
this->m_szModuleName = mir_strdup(protoName);
this->m_szProtoName = mir_strdup(protoName);
- //_strlwr(m_szProtoName);
- //this->m_szProtoName[0] = toupper(m_szProtoName[0]);
+ ::strlwr(m_szProtoName);
+ this->m_szProtoName[0] = ::toupper(m_szProtoName[0]);
//this->login = NULL;
this->password = NULL;
@@ -248,7 +248,7 @@ int __cdecl CSkypeProto::SendMsg(HANDLE hContact, int flags, const char* msg) if (conversation)
{
Message::Ref message;
- conversation->PostText(::mir_utf8encode(msg), message);
+ conversation->PostText(msg, message);
}
this->SendBroadcastAsync(
|