diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 12:06:06 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 12:06:06 +0000 |
commit | 0e871f977295bade47e16b73321b9e7ce4f8a905 (patch) | |
tree | f805a0a9e0d0baeab12579a55ae4ec3f549b7319 /forms | |
parent | 6e159c93f7c8a50246109d87f0ad0bb88b98a40b (diff) |
INTEGRATION: CWS warnings01 (1.3.68); FILE MERGED
2006/03/14 15:20:36 fs 1.3.68.1: #i57457# warning-free code
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/xforms/submission/serialization_app_xml.cxx | 6 | ||||
-rw-r--r-- | forms/source/xforms/submission/serialization_urlencoded.hxx | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/forms/source/xforms/submission/serialization_app_xml.cxx b/forms/source/xforms/submission/serialization_app_xml.cxx index ccd1f21f7f3a..d237030412c8 100644 --- a/forms/source/xforms/submission/serialization_app_xml.cxx +++ b/forms/source/xforms/submission/serialization_app_xml.cxx @@ -4,9 +4,9 @@ * * $RCSfile: serialization_app_xml.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-08 23:24:01 $ + * last change: $Author: hr $ $Date: 2006-06-19 13:05:39 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -78,7 +78,7 @@ CSerializationAppXML::serialize_node(const CSS::uno::Reference< CSS::xml::dom::X CSS::uno::Reference< CSS::lang::XUnoTunnel > aTunnel(aNode, CSS::uno::UNO_QUERY); if (aTunnel.is()) { - xmlNodePtr aNodePtr = (xmlNodePtr)aTunnel->getSomething(CSS::uno::Sequence< sal_Int8 >()); + xmlNodePtr aNodePtr = reinterpret_cast< xmlNodePtr >( aTunnel->getSomething(CSS::uno::Sequence< sal_Int8 >()) ); xmlDocPtr aDocPtr = xmlNewDoc((xmlChar*)"1.0"); xmlNodePtr aDocNodePtr = xmlDocCopyNode(aNodePtr, aDocPtr, 1); if (aDocNodePtr != NULL) { diff --git a/forms/source/xforms/submission/serialization_urlencoded.hxx b/forms/source/xforms/submission/serialization_urlencoded.hxx index 6c799c583b9a..5e25d875ec43 100644 --- a/forms/source/xforms/submission/serialization_urlencoded.hxx +++ b/forms/source/xforms/submission/serialization_urlencoded.hxx @@ -4,9 +4,9 @@ * * $RCSfile: serialization_urlencoded.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-08 23:25:14 $ + * last change: $Author: hr $ $Date: 2006-06-19 13:06:06 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -61,4 +61,4 @@ public: virtual CSS::uno::Reference< CSS::io::XInputStream > getInputStream(); }; -#endif
\ No newline at end of file +#endif |