diff options
author | George Hazan <george.hazan@gmail.com> | 2015-07-31 09:46:53 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-07-31 09:46:53 +0000 |
commit | eb3c0d1be3114815f27c33947fd3591858661000 (patch) | |
tree | 5a38d4896a6e1aa348b0551e45218e8dfe732115 /protocols/SkypeWeb/src/skype_history_sync.cpp | |
parent | 0c2bd15027983dc1502edc0da7b0839fc9e9b70b (diff) |
warning fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@14762 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_history_sync.cpp')
-rw-r--r-- | protocols/SkypeWeb/src/skype_history_sync.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/SkypeWeb/src/skype_history_sync.cpp b/protocols/SkypeWeb/src/skype_history_sync.cpp index 06fe888e0d..8f582ae7a5 100644 --- a/protocols/SkypeWeb/src/skype_history_sync.cpp +++ b/protocols/SkypeWeb/src/skype_history_sync.cpp @@ -72,14 +72,14 @@ void CSkypeProto::OnGetServerHistory(const NETLIBHTTPREQUEST *response) {
if (messageType == "Text" || messageType == "RichText")
{
- ptrA message(RemoveHtml(content.c_str()));
+ ptrA szMessage(RemoveHtml(content.c_str()));
MEVENT dbevent = GetMessageFromDb(hContact, szMessageId);
if (isEdited && dbevent != NULL)
{
- AppendDBEvent(hContact, dbevent, message, szMessageId, timestamp);
+ AppendDBEvent(hContact, dbevent, szMessage, szMessageId, timestamp);
}
- else AddDbEvent(emoteOffset == 0 ? EVENTTYPE_MESSAGE : SKYPE_DB_EVENT_TYPE_ACTION, hContact, timestamp, iFlags, &message[emoteOffset], szMessageId);
+ else AddDbEvent(emoteOffset == 0 ? EVENTTYPE_MESSAGE : SKYPE_DB_EVENT_TYPE_ACTION, hContact, timestamp, iFlags, &szMessage[emoteOffset], szMessageId);
}
else if (messageType == "Event/Call")
{
|