diff options
author | George Hazan <george.hazan@gmail.com> | 2013-09-21 13:40:52 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-09-21 13:40:52 +0000 |
commit | c69a9c892f52056d452ad8520e6c09b6956f30e3 (patch) | |
tree | cf26cee03ae18c38486515e94ec18068b38cbd41 /protocols/JabberG/src/jabber_misc.cpp | |
parent | 8b6824e3ec3ed7340db33bcbe592321b6afb0a00 (diff) |
smart pointers for Jabber resources
git-svn-id: http://svn.miranda-ng.org/main/trunk@6155 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_misc.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_misc.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/JabberG/src/jabber_misc.cpp b/protocols/JabberG/src/jabber_misc.cpp index d5f38fb6e7..f3e9bc35af 100644 --- a/protocols/JabberG/src/jabber_misc.cpp +++ b/protocols/JabberG/src/jabber_misc.cpp @@ -384,7 +384,7 @@ void CJabberProto::UpdateMirVer(JABBER_LIST_ITEM *item) Log("JabberUpdateMirVer: for jid %S", item->jid);
- JABBER_RESOURCE_STATUS *p = NULL;
+ pResourceStatus p(NULL);
if (item->resourceMode == RSMODE_LASTSEEN)
p = item->pLastSeenResource;
else if (item->resourceMode == RSMODE_MANUAL)
@@ -394,7 +394,7 @@ void CJabberProto::UpdateMirVer(JABBER_LIST_ITEM *item) UpdateMirVer(hContact, p);
}
-void CJabberProto::FormatMirVer(JABBER_RESOURCE_STATUS *resource, TCHAR *buf, int bufSize)
+void CJabberProto::FormatMirVer(pResourceStatus &resource, TCHAR *buf, int bufSize)
{
if ( !buf || !bufSize) return;
buf[ 0 ] = _T('\0');
@@ -475,7 +475,7 @@ void CJabberProto::FormatMirVer(JABBER_RESOURCE_STATUS *resource, TCHAR *buf, in }
-void CJabberProto::UpdateMirVer(HANDLE hContact, JABBER_RESOURCE_STATUS *resource)
+void CJabberProto::UpdateMirVer(HANDLE hContact, pResourceStatus &resource)
{
TCHAR szMirVer[ 512 ];
FormatMirVer(resource, szMirVer, SIZEOF(szMirVer));
|