Skip to content
Snippets Groups Projects
Commit 5145f6d9 authored by Andy Heninger's avatar Andy Heninger
Browse files

Fix SAXException assignment operator. Now non-virtual, and

SAXParseException invokes base class operator.


git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@172380 13f79535-47bb-0310-9956-ffa450edef68
parent a556bcb8
No related branches found
No related tags found
No related merge requests found
......@@ -56,6 +56,10 @@
/*
* $Log$
* Revision 1.8 2000/09/07 23:55:02 andyh
* Fix SAXException assignment operator. Now non-virtual, and
* SAXParseException invokes base class operator.
*
* Revision 1.7 2000/08/09 22:06:04 jpolast
* more functionality to SAXException and its children.
* msgs are now functional for SAXNotSupportedEx and
......@@ -174,7 +178,7 @@ public:
*
* @param toCopy The object to be copied
*/
virtual SAXException& operator=(const SAXException& toCopy)
SAXException& operator=(const SAXException& toCopy)
{
if (this == &toCopy)
return *this;
......
......@@ -56,6 +56,10 @@
/*
* $Log$
* Revision 1.4 2000/09/07 23:55:02 andyh
* Fix SAXException assignment operator. Now non-virtual, and
* SAXParseException invokes base class operator.
*
* Revision 1.3 2000/03/02 19:54:35 roddey
* This checkin includes many changes done while waiting for the
* 1.1.0 code to be finished. I can't list them all here, but a list is
......@@ -135,6 +139,7 @@ SAXParseException::operator=(const SAXParseException& toAssign)
if (this == &toAssign)
return *this;
this->SAXException::operator =(toAssign);
fColumnNumber = toAssign.fColumnNumber;
fLineNumber = toAssign.fLineNumber;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment