diff options
author | George Hazan <george.hazan@gmail.com> | 2014-12-21 12:52:30 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-12-21 12:52:30 +0000 |
commit | c1e2b561b386a847411d9af65f64b649a3991fd7 (patch) | |
tree | 808bbc722fec6c4859e0332aae19c1c0a752ab57 /plugins/Scriver/src/utils.cpp | |
parent | 9b119cadd74e1343cad493e8b366e69743a620d0 (diff) |
- total data reordering to unify the window processing;
- major cleaning;
- version bump
git-svn-id: http://svn.miranda-ng.org/main/trunk@11553 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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 b40a5272fe..0ecbad553b 100644 --- a/plugins/Scriver/src/utils.cpp +++ b/plugins/Scriver/src/utils.cpp @@ -434,7 +434,7 @@ void GetContactUniqueId(SrmmWindowData *dat, char *buf, int maxlen) CONTACTINFO ci;
memset(&ci, 0, sizeof(ci));
ci.cbSize = sizeof(ci);
- ci.hContact = dat->windowData.hContact;
+ ci.hContact = dat->hContact;
ci.szProto = dat->szProto;
ci.dwFlag = CNF_UNIQUEID;
buf[0] = 0;
|