summaryrefslogtreecommitdiff
path: root/udm
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 12:09:01 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 12:09:01 +0000
commit5ade4a952b16b3461c148c82a413b67b3a5c10ea (patch)
tree7ea45995fd823de4f186a610986a8005e0640ad7 /udm
parenta929e608fbb2a75cab8de3a54fa03ee3bd49c2bb (diff)
INTEGRATION: CWS warnings01 (1.4.4); FILE MERGED
2005/09/30 15:56:42 np 1.4.4.1: #i53898#
Diffstat (limited to 'udm')
-rw-r--r--udm/inc/udm/xml/xmlitem.hxx18
1 files changed, 3 insertions, 15 deletions
diff --git a/udm/inc/udm/xml/xmlitem.hxx b/udm/inc/udm/xml/xmlitem.hxx
index dcac68b6e629..e552f95db21c 100644
--- a/udm/inc/udm/xml/xmlitem.hxx
+++ b/udm/inc/udm/xml/xmlitem.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: xmlitem.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 14:33:41 $
+ * last change: $Author: hr $ $Date: 2006-06-19 13:09:01 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -163,7 +163,6 @@ class EmptyElement : public Element
// Local
virtual AttrList & inq_RefAttrs() = 0;
- const AttrList & inq_RefAttrs() const;
};
class PureElement : public Element
@@ -183,7 +182,6 @@ class PureElement : public Element
// Local
virtual Dyn< Item > &
inq_RefContent() = 0;
- const Dyn< Item > & inq_RefContent() const;
};
class SglTag : public Element
@@ -273,7 +271,7 @@ class APureElement : public PureElement
virtual Dyn< Item > &
inq_RefContent();
// DATA
- ::csv::String sTagName;
+ ::csv::String sTagName;
Dyn< Item > pContent;
};
@@ -390,18 +388,8 @@ inline Item *
Element::SetContent( DYN Item * let_dpItem )
{ do_SetContent(let_dpItem); return let_dpItem; }
-inline const AttrList &
-EmptyElement::inq_RefAttrs() const
- { return const_cast< EmptyElement* >(this)->inq_RefAttrs(); }
-
-inline const Dyn< Item > &
-PureElement::inq_RefContent() const
- { return const_cast< PureElement* >(this)->inq_RefContent(); }
} // namespace xml
} // namespace csi
-
#endif
-
-