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
This commit is contained in:
kvisco%ziplink.net
2000-04-14 04:24:28 +00:00
parent f35d51df0e
commit db0fc10022

View File

@@ -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 <A HREF="mailto:kvisco@ziplink.net">Keith Visco</A>
* @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
/**