diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2016-02-05 11:33:00 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2016-02-05 11:33:00 +0000 |
commit | 3e1994c949e104087a865e82a5cacc036781f755 (patch) | |
tree | 1d79d740ad3a8f1b274e4af09af6b6f57110d457 /plugins/MirLua | |
parent | 216df844558e0f906c9f50ef0e770bd597e0b407 (diff) |
git-svn-id: http://svn.miranda-ng.org/main/trunk@16221 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua')
-rw-r--r-- | plugins/MirLua/Modules/JSON/src/stdafx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirLua/Modules/JSON/src/stdafx.h b/plugins/MirLua/Modules/JSON/src/stdafx.h index 333a821a62..98bbbbbeeb 100644 --- a/plugins/MirLua/Modules/JSON/src/stdafx.h +++ b/plugins/MirLua/Modules/JSON/src/stdafx.h @@ -17,7 +17,7 @@ struct MT JSONNode *node;
bool bDelete;
- MT(JSONNode &refNode, bool bCopy = false) : node(bCopy ? json_copy(&refNode) : &refNode), bDelete(!bCopy) {}
+ MT(JSONNode &refNode, bool bCopy = false) : node(bCopy ? json_copy(&refNode) : &refNode), bDelete(bCopy) {}
MT(JSONNode *n, bool bD = true) : node(n), bDelete(bD) {}
~MT()
{
|