From 3ff2d22a10d65523f011661c9880fc72512fb829 Mon Sep 17 00:00:00 2001 From: Alessandro Bonazzi Date: Mon, 24 Feb 2020 11:54:19 +0100 Subject: [PATCH] Patch level : 12.0 no patch Files correlati : Commento : MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Aggiunto ai record il campo update_memo per verificare se un memo รจ stato modificato --- src/include/varrec.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/include/varrec.cpp b/src/include/varrec.cpp index 2629a33ca..158bd738c 100755 --- a/src/include/varrec.cpp +++ b/src/include/varrec.cpp @@ -185,7 +185,8 @@ void TVariable_rectype::update_memo() t << '=' << val; } } - put(_memo_fld, t); + if (get(_memo_fld) != t) + put(_memo_fld, t); } }