dbertoni 2003/02/04 16:06:35
Modified: c/src/XSLT ElemTemplateElement.cpp ElemTemplateElement.hpp
Log:
Changed name of accessor functions.
Revision Changes Path
1.91 +1 -1 xml-xalan/c/src/XSLT/ElemTemplateElement.cpp
Index: ElemTemplateElement.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XSLT/ElemTemplateElement.cpp,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ElemTemplateElement.cpp 8 Jan 2003 06:59:56 -0000 1.90
+++ ElemTemplateElement.cpp 5 Feb 2003 00:06:34 -0000 1.91
@@ -1216,7 +1216,7 @@
if (isEmpty(prefix) == false)
{
- if(finishedConstruction() == true)
+ if(getFinishedConstruction() == true)
{
if (equals(prefix, DOMServices::s_XMLString) == true)
{
1.57 +6 -4 xml-xalan/c/src/XSLT/ElemTemplateElement.hpp
Index: ElemTemplateElement.hpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XSLT/ElemTemplateElement.hpp,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ElemTemplateElement.hpp 21 Dec 2002 00:21:25 -0000 1.56
+++ ElemTemplateElement.hpp 5 Feb 2003 00:06:35 -0000 1.57
@@ -358,7 +358,7 @@
/**
* Called during compilation to process xsl:sort elements in
* the stylesheet.
- *
+ *
* @param constructionContext The current construction context
* @param theStylesheet The owning stylesheet
* @param atts The list of attributes for the sort element
@@ -405,18 +405,20 @@
/**
* Set the flag indicating construction of the element is completed.
+ *
+ * @param fValue The value to set
*/
void
- finishedConstruction()
+ setFinishedConstruction(bool fValue)
{
- setFlag(eFinishedConstruction, true);
+ setFlag(eFinishedConstruction, fValue);
}
/**
* Get the flag indicating construction of the element is completed.
*/
bool
- finishedConstruction() const
+ getFinishedConstruction() const
{
return getFlag(eFinishedConstruction);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]