From a4d84c2a89dc88172c36cac6cce277766eec0c17 Mon Sep 17 00:00:00 2001 From: eap Date: Thu, 2 Jun 2005 14:44:16 +0000 Subject: [PATCH] fix QtxLogic::calculate() --- src/Qtx/QtxStdOperations.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Qtx/QtxStdOperations.cxx b/src/Qtx/QtxStdOperations.cxx index a81c1aad6..f1052e2f2 100644 --- a/src/Qtx/QtxStdOperations.cxx +++ b/src/Qtx/QtxStdOperations.cxx @@ -360,7 +360,7 @@ QtxParser::Error QtxLogic::calculate( const QString& op, } else if( op=="not" || op=="!" ) - v2 = !v2.toBool(); + set( v2, !v2.toBool() ); return err; } -- 2.39.2