From 3e1994c949e104087a865e82a5cacc036781f755 Mon Sep 17 00:00:00 2001 From: MikalaiR Date: Fri, 5 Feb 2016 11:33:00 +0000 Subject: git-svn-id: http://svn.miranda-ng.org/main/trunk@16221 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/MirLua/Modules/JSON/src/stdafx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() { -- cgit v1.2.3