diff options
author | George Hazan <ghazan@miranda.im> | 2017-02-26 16:02:07 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-02-26 16:02:07 +0300 |
commit | 5c002a15891fc4cdfaeda7247003e13db28fc5ca (patch) | |
tree | 338e8761141349996a1d3f67a570744b474f837f /plugins/Scriver/src/utils.cpp | |
parent | 12d4034fdbd989caa495dfe665fade69eab09174 (diff) |
Scriver moved to UI classes
Diffstat (limited to 'plugins/Scriver/src/utils.cpp')
-rw-r--r-- | plugins/Scriver/src/utils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Scriver/src/utils.cpp b/plugins/Scriver/src/utils.cpp index 46d2874758..6f6b20209d 100644 --- a/plugins/Scriver/src/utils.cpp +++ b/plugins/Scriver/src/utils.cpp @@ -385,9 +385,9 @@ void SetSearchEngineIcons(HMENU hMenu, HIMAGELIST hImageList) }
}
-void GetContactUniqueId(SrmmWindowData *dat, char *buf, int maxlen)
+void GetContactUniqueId(CSrmmWindow *dat, char *buf, int maxlen)
{
- ptrW id(Contact_GetInfo(CNF_UNIQUEID, dat->hContact, dat->szProto));
+ ptrW id(Contact_GetInfo(CNF_UNIQUEID, dat->m_hContact, dat->szProto));
if (id != NULL)
strncpy_s(buf, maxlen, _T2A(id), _TRUNCATE);
}
|