You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by dm...@apache.org on 2004/08/13 17:49:07 UTC

cvs commit: xml-xalan/c/src/xalanc/XPath XPathExecutionContext.hpp XPathExecutionContextDefault.cpp XPathExecutionContextDefault.hpp XPathProcessorImpl.cpp XPathProcessorImpl.hpp

dmitryh     2004/08/13 08:49:07

  Modified:    c/src/xalanc/XPath XPathExecutionContext.hpp
                        XPathExecutionContextDefault.cpp
                        XPathExecutionContextDefault.hpp
                        XPathProcessorImpl.cpp XPathProcessorImpl.hpp
  Log:
  Cleaning obsolete functions with "const char*" parameter
  
  Revision  Changes    Path
  1.13      +0 -18     xml-xalan/c/src/xalanc/XPath/XPathExecutionContext.hpp
  
  Index: XPathExecutionContext.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/xalanc/XPath/XPathExecutionContext.hpp,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- XPathExecutionContext.hpp	31 Jul 2004 06:05:07 -0000	1.12
  +++ XPathExecutionContext.hpp	13 Aug 2004 15:49:07 -0000	1.13
  @@ -698,34 +698,16 @@
   			const LocatorType* 		locator = 0) const = 0;
   
   	virtual void
  -	error(
  -			const char*			msg,
  -			const XalanNode* 	sourceNode = 0,
  -			const LocatorType* 	locator = 0) const = 0;
  -
  -	virtual void
   	warn(
   			const XalanDOMString&	msg,
   			const XalanNode* 		sourceNode = 0,
   			const LocatorType* 		locator = 0) const = 0;
   
   	virtual void
  -	warn(
  -			const char*			msg,
  -			const XalanNode* 	sourceNode = 0,
  -			const LocatorType* 	locator = 0) const = 0;
  -
  -	virtual void
   	message(
   			const XalanDOMString&	msg,
   			const XalanNode* 		sourceNode = 0,
   			const LocatorType* 		locator = 0) const = 0;
  -
  -	virtual void
  -	message(
  -			const char*			msg,
  -			const XalanNode* 	sourceNode = 0,
  -			const LocatorType* 	locator = 0) const = 0;
   
   protected:
   
  
  
  
  1.11      +0 -34     xml-xalan/c/src/xalanc/XPath/XPathExecutionContextDefault.cpp
  
  Index: XPathExecutionContextDefault.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/xalanc/XPath/XPathExecutionContextDefault.cpp,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- XPathExecutionContextDefault.cpp	2 Apr 2004 02:45:28 -0000	1.10
  +++ XPathExecutionContextDefault.cpp	13 Aug 2004 15:49:07 -0000	1.11
  @@ -513,17 +513,6 @@
   
   
   void
  -XPathExecutionContextDefault::error(
  -			const char*			msg,
  -			const XalanNode* 	sourceNode,
  -			const LocatorType* 	locator) const
  -{
  -	error(TranscodeFromLocalCodePage(msg), sourceNode, locator);
  -}
  -
  -
  -
  -void
   XPathExecutionContextDefault::warn(
   			const XalanDOMString&	msg,
   			const XalanNode*		sourceNode,
  @@ -576,17 +565,6 @@
   
   
   void
  -XPathExecutionContextDefault::warn(
  -			const char*			msg,
  -			const XalanNode*	sourceNode,
  -			const LocatorType* 	locator) const
  -{
  -	warn(TranscodeFromLocalCodePage(msg), sourceNode, locator);
  -}
  -
  -
  -
  -void
   XPathExecutionContextDefault::message(
   			const XalanDOMString&	msg,
   			const XalanNode*		sourceNode,
  @@ -635,18 +613,6 @@
   		throw XalanXPathException(msg, uri, lineNumber, columnNumber);
   	}
   }
  -
  -
  -
  -void
  -XPathExecutionContextDefault::message(
  -			const char*			msg,
  -			const XalanNode*	sourceNode,
  -			const LocatorType* 	locator) const
  -{
  -	message(TranscodeFromLocalCodePage(msg), sourceNode, locator);
  -}
  -
   
   
   XalanDocument*
  
  
  
  1.9       +0 -18     xml-xalan/c/src/xalanc/XPath/XPathExecutionContextDefault.hpp
  
  Index: XPathExecutionContextDefault.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/xalanc/XPath/XPathExecutionContextDefault.hpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- XPathExecutionContextDefault.hpp	2 Apr 2004 02:45:28 -0000	1.8
  +++ XPathExecutionContextDefault.hpp	13 Aug 2004 15:49:07 -0000	1.9
  @@ -332,34 +332,16 @@
   			const LocatorType* 		locator = 0) const;
   
   	virtual void
  -	error(
  -			const char*			msg,
  -			const XalanNode* 	sourceNode = 0,
  -			const LocatorType* 	locator = 0) const;
  -
  -	virtual void
   	warn(
   			const XalanDOMString&	msg,
   			const XalanNode* 		sourceNode = 0,
   			const LocatorType* 		locator = 0) const;
   
   	virtual void
  -	warn(
  -			const char*			msg,
  -			const XalanNode* 	sourceNode = 0,
  -			const LocatorType* 	locator = 0) const;
  -
  -	virtual void
   	message(
   			const XalanDOMString&	msg,
   			const XalanNode* 		sourceNode = 0,
   			const LocatorType* 		locator = 0) const;
  -
  -	virtual void
  -	message(
  -			const char*			msg,
  -			const XalanNode* 	sourceNode = 0,
  -			const LocatorType* 	locator = 0) const;
   
   protected:
   
  
  
  
  1.11      +0 -8      xml-xalan/c/src/xalanc/XPath/XPathProcessorImpl.cpp
  
  Index: XPathProcessorImpl.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/xalanc/XPath/XPathProcessorImpl.cpp,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- XPathProcessorImpl.cpp	19 Apr 2004 14:47:18 -0000	1.10
  +++ XPathProcessorImpl.cpp	13 Aug 2004 15:49:07 -0000	1.11
  @@ -814,14 +814,6 @@
   
   
   void
  -XPathProcessorImpl::error(const char*	msg) const
  -{
  -	error(TranscodeFromLocalCodePage(msg));
  -}
  -
  -
  -
  -void
   XPathProcessorImpl::Expr()
   {
   	OrExpr();
  
  
  
  1.6       +0 -6      xml-xalan/c/src/xalanc/XPath/XPathProcessorImpl.hpp
  
  Index: XPathProcessorImpl.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/xalanc/XPath/XPathProcessorImpl.hpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- XPathProcessorImpl.hpp	31 Jul 2004 06:05:07 -0000	1.5
  +++ XPathProcessorImpl.hpp	13 Aug 2004 15:49:07 -0000	1.6
  @@ -263,12 +263,6 @@
   	error(const XalanDOMString&		msg) const;
   
   	/**
  -	 * Throw an exception using the provided message text.
  -	 */
  -	void
  -	error(const char*	msg) const;
  -
  -	/**
   	 * Given a string, return the corresponding token.
   	 */
   	static XPathExpression::eOpCodes
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org