dbertoni    2004/04/11 17:36:23

  Modified:    c/src/xalanc/XSLT XalanSpaceNodeTester.cpp
  Log:
  Use initialize() function instead of constructor.
  
  Revision  Changes    Path
  1.3       +7 -6      xml-xalan/c/src/xalanc/XSLT/XalanSpaceNodeTester.cpp
  
  Index: XalanSpaceNodeTester.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/xalanc/XSLT/XalanSpaceNodeTester.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XalanSpaceNodeTester.cpp  6 Apr 2004 00:15:36 -0000       1.2
  +++ XalanSpaceNodeTester.cpp  12 Apr 2004 00:36:23 -0000      1.3
  @@ -57,15 +57,16 @@
               const XalanDOMString&           theNameTest,
               const PrefixResolver&           thePrefixResolver,
               const LocatorType*              theLocator) :
  -    NodeTester(
  -             theConstructionContext,
  -             theNameTest,
  -             thePrefixResolver,
  -             theLocator,
  -             &m_matchScore),
  +    NodeTester(),
       m_matchScore(),
        m_type(theType)
   {
  +     m_matchScore = initialize(
  +             theConstructionContext,
  +             theNameTest,
  +             thePrefixResolver,
  +             theLocator);
  +
       assert(m_matchScore != XPath::eMatchScoreNone);
   }
       
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to