diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-16 15:37:16 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-16 15:37:16 +0000 |
commit | 5772526af8c29f7eecbe26bb70a106e350cf8680 (patch) | |
tree | 30ab7c0995cf049eb49e2548acfd78400ace69b9 /plugins/Clist_modern/src/hdr | |
parent | 330ff76e913f03653a2db5ef6e4a62885b19ae5e (diff) |
aplrtly revert [13616]
git-svn-id: http://svn.miranda-ng.org/main/trunk@13619 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/hdr')
-rw-r--r-- | plugins/Clist_modern/src/hdr/modern_commonheaders.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Clist_modern/src/hdr/modern_commonheaders.h b/plugins/Clist_modern/src/hdr/modern_commonheaders.h index f1e5cbcce0..ab4108520f 100644 --- a/plugins/Clist_modern/src/hdr/modern_commonheaders.h +++ b/plugins/Clist_modern/src/hdr/modern_commonheaders.h @@ -290,19 +290,19 @@ public: HashStringKeyNoCase(const char* szKey)
{
- _strKey = mir_strdup(szKey);
+ _strKey = _strdup(szKey);
_CreateHashKey();
}
HashStringKeyNoCase(const HashStringKeyNoCase& hsKey)
{
- _strKey = mir_strdup(hsKey._strKey);
+ _strKey = _strdup(hsKey._strKey);
_dwKey = hsKey._dwKey;
}
HashStringKeyNoCase& operator= (const HashStringKeyNoCase& hsKey)
{
- _strKey = mir_strdup(hsKey._strKey);
+ _strKey = _strdup(hsKey._strKey);
_dwKey = hsKey._dwKey;
}
|