diff options
author | Rozhuk Ivan <rozhuk.im@gmail.com> | 2014-11-30 18:57:14 +0000 |
---|---|---|
committer | Rozhuk Ivan <rozhuk.im@gmail.com> | 2014-11-30 18:57:14 +0000 |
commit | 450894ec572814925c03c7c1cdf3e977d32f839f (patch) | |
tree | c99ff6d2f1550dc20ad64d166dfe3309e6ef5d6b /plugins/NewAwaySysMod | |
parent | 688f55ba998c19304a29727c910504903f4cc49a (diff) |
FillMemory -> memset
git-svn-id: http://svn.miranda-ng.org/main/trunk@11177 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NewAwaySysMod')
-rw-r--r-- | plugins/NewAwaySysMod/src/ContactList.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewAwaySysMod/src/ContactList.h b/plugins/NewAwaySysMod/src/ContactList.h index 20020cc32f..b85df45a01 100644 --- a/plugins/NewAwaySysMod/src/ContactList.h +++ b/plugins/NewAwaySysMod/src/ContactList.h @@ -33,7 +33,7 @@ typedef TREEITEMARRAY* PTREEITEMARRAY; class CCLItemData // internal CCList's class
{
public:
- CCLItemData(MCONTACT hContact = INVALID_CONTACT_ID): hContact(hContact) {FillMemory(ExtraIcons, sizeof(ExtraIcons), CLC_EXTRAICON_EMPTY);};
+ CCLItemData(MCONTACT hContact = INVALID_CONTACT_ID): hContact(hContact) {memset(ExtraIcons, CLC_EXTRAICON_EMPTY, sizeof(ExtraIcons));};
BYTE ExtraIcons[MAXEXTRAICONS];
MCONTACT hContact;
|