diff options
author | George Hazan <ghazan@miranda.im> | 2017-02-27 14:10:24 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-02-27 14:28:50 +0300 |
commit | 11a50838009ec765f1d680fb55b264300ed6b797 (patch) | |
tree | d85360fac5f9e9cfedb3a311ca9ce93a16eaec18 /plugins/Scriver/src/utils.cpp | |
parent | 5c002a15891fc4cdfaeda7247003e13db28fc5ca (diff) |
- name conflict resolution;
- code cleaning
Diffstat (limited to 'plugins/Scriver/src/utils.cpp')
-rw-r--r-- | plugins/Scriver/src/utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Scriver/src/utils.cpp b/plugins/Scriver/src/utils.cpp index 6f6b20209d..11a012b094 100644 --- a/plugins/Scriver/src/utils.cpp +++ b/plugins/Scriver/src/utils.cpp @@ -387,7 +387,7 @@ void SetSearchEngineIcons(HMENU hMenu, HIMAGELIST hImageList) void GetContactUniqueId(CSrmmWindow *dat, char *buf, int maxlen)
{
- ptrW id(Contact_GetInfo(CNF_UNIQUEID, dat->m_hContact, dat->szProto));
+ ptrW id(Contact_GetInfo(CNF_UNIQUEID, dat->m_hContact, dat->m_szProto));
if (id != NULL)
strncpy_s(buf, maxlen, _T2A(id), _TRUNCATE);
}
|