From db0fc10022f755ff2619d5de79e0137b06526f0c Mon Sep 17 00:00:00 2001 From: "kvisco%ziplink.net" Date: Fri, 14 Apr 2000 04:24:28 +0000 Subject: [PATCH] Changed constructor to use new naming, TX_FALSE, instead of FALSE git-svn-id: svn://10.0.0.236/trunk@65949 18797224-902f-48f8-a5cc-f745e15eee43 --- .../transformiix/source/xpath/BooleanFunctionCall.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mozilla/extensions/transformiix/source/xpath/BooleanFunctionCall.cpp b/mozilla/extensions/transformiix/source/xpath/BooleanFunctionCall.cpp index f825fc59c3c..6e03b27d6a3 100644 --- a/mozilla/extensions/transformiix/source/xpath/BooleanFunctionCall.cpp +++ b/mozilla/extensions/transformiix/source/xpath/BooleanFunctionCall.cpp @@ -21,7 +21,7 @@ * Keith Visco, kvisco@ziplink.net * -- original author. * - * $Id: BooleanFunctionCall.cpp,v 1.2 2000-04-14 02:04:43 Peter.VanderBeken%pandora.be Exp $ + * $Id: BooleanFunctionCall.cpp,v 1.3 2000-04-14 04:24:28 kvisco%ziplink.net Exp $ */ #include "FunctionLib.h" @@ -29,10 +29,10 @@ /** * Creates a default BooleanFunctionCall, which always evaluates to False * @author Keith Visco - * @version $Revision: 1.2 $ $Date: 2000-04-14 02:04:43 $ + * @version $Revision: 1.3 $ $Date: 2000-04-14 04:24:28 $ **/ BooleanFunctionCall::BooleanFunctionCall() : FunctionCall(XPathNames::FALSE_FN) { - this->type = FALSE; + this->type = TX_FALSE; } //-- BooleanFunctionCall /**