summaryrefslogtreecommitdiff
path: root/jvmfwk/source/libxmlutil.cxx
diff options
context:
space:
mode:
authorJoachim Lingner <jl@openoffice.org>2004-05-14 13:44:10 +0000
committerJoachim Lingner <jl@openoffice.org>2004-05-14 13:44:10 +0000
commit4078f3b82ff4035f17257e965ed56178ffcff983 (patch)
tree43e6c0a9089eb079bb0a7f287535aaf1ae1ae6a3 /jvmfwk/source/libxmlutil.cxx
parent4c5e2d7303b9536f28b0448d6884477dcc150359 (diff)
#i20052#
Diffstat (limited to 'jvmfwk/source/libxmlutil.cxx')
-rw-r--r--jvmfwk/source/libxmlutil.cxx41
1 files changed, 2 insertions, 39 deletions
diff --git a/jvmfwk/source/libxmlutil.cxx b/jvmfwk/source/libxmlutil.cxx
index 96f01a979f3c..6aae6df93eb3 100644
--- a/jvmfwk/source/libxmlutil.cxx
+++ b/jvmfwk/source/libxmlutil.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: libxmlutil.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: jl $ $Date: 2004-04-27 15:22:15 $
+ * last change: $Author: jl $ $Date: 2004-05-14 14:44:10 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -160,39 +160,6 @@ CXmlDocPtr::operator xmlDoc*()
}
//===========================================================
-// CXmlNsPtr::CXmlNsPtr(xmlNs* pNs)
-// : _object(pNs)
-// {
-// }
-
-// CXmlNsPtr::CXmlNsPtr():_object(NULL)
-// {
-// }
-
-// CXmlNsPtr::~CXmlNsPtr()
-// {
-// // xmlFreeNs(_object);
-// }
-// CXmlNsPtr & CXmlNsPtr::operator = (xmlNs* pObj)
-// {
-// if (_object == pObj)
-// return *this;
-// xmlFreeNs(_object);
-// _object = pObj;
-// return *this;
-// }
-
-// xmlNs* CXmlNsPtr::operator ->()
-// {
-// return _object;
-// }
-
-// CXmlNsPtr::operator xmlNs*()
-// {
-// return _object;
-// }
-
-//===========================================================
CXmlCharPtr::CXmlCharPtr(xmlChar * aChar)
: _object(aChar)
{
@@ -215,10 +182,6 @@ CXmlCharPtr & CXmlCharPtr::operator = (xmlChar* pObj)
_object = pObj;
return *this;
}
-// xmlChar* CXmlCharPtr::operator ->()
-// {
-// return _object;
-// }
CXmlCharPtr::operator xmlChar*()
{