diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 17:24:12 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 17:24:12 +0000 |
commit | 7b187db4aec96ebd14a85b442882910a58905d17 (patch) | |
tree | 15ed21e7fffea67a568f6a7295526f6f9077889f | |
parent | 8ce54a989a5e616fe980af2353c9b67c46efc676 (diff) |
INTEGRATION: CWS warnings01 (1.4.34); FILE MERGED
2005/11/16 22:47:15 pl 1.4.34.2: #i55991# removed warnings
2005/11/02 14:57:53 cl 1.4.34.1: warning free code changes
-rw-r--r-- | xmloff/source/style/EnumPropertyHdl.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xmloff/source/style/EnumPropertyHdl.cxx b/xmloff/source/style/EnumPropertyHdl.cxx index 35095948e3c3..f8f67b196602 100644 --- a/xmloff/source/style/EnumPropertyHdl.cxx +++ b/xmloff/source/style/EnumPropertyHdl.cxx @@ -4,9 +4,9 @@ * * $RCSfile: EnumPropertyHdl.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: rt $ $Date: 2005-09-09 14:23:00 $ + * last change: $Author: hr $ $Date: 2006-06-19 18:24:12 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -50,7 +50,7 @@ #endif #ifndef _RTL_USTRING_ -#include <rtl/ustring> +#include <rtl/ustring.hxx> #endif #ifndef _RTL_USTRBUF_HXX_ @@ -93,7 +93,7 @@ XMLEnumPropertyHdl::~XMLEnumPropertyHdl() // Nothing to do } -sal_Bool XMLEnumPropertyHdl::importXML( const OUString& rStrImpValue, Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const +sal_Bool XMLEnumPropertyHdl::importXML( const OUString& rStrImpValue, Any& rValue, const SvXMLUnitConverter& ) const { USHORT nValue = 0; @@ -123,7 +123,7 @@ sal_Bool XMLEnumPropertyHdl::importXML( const OUString& rStrImpValue, Any& rValu return sal_False; } -sal_Bool XMLEnumPropertyHdl::exportXML( OUString& rStrExpValue, const Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const +sal_Bool XMLEnumPropertyHdl::exportXML( OUString& rStrExpValue, const Any& rValue, const SvXMLUnitConverter& ) const { sal_Int32 nValue; if(!(rValue >>= nValue )) |