diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-29 10:01:26 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-29 10:01:26 +0000 |
commit | 6646129839d2a20624c638d063a48a1eebfc8beb (patch) | |
tree | 52da125502165b9a20515a0c509cf5dcc67717ab | |
parent | 905bf129cfb19e414f0d7f4e920d1e3b9e77a484 (diff) |
INTEGRATION: CWS warningfixes03_SRC680 (1.3.32); FILE MERGED
2006/08/18 14:16:24 mhu 1.3.32.1: #i68745# Fixed GCC 4.0.x warning(s).
-rw-r--r-- | xmloff/source/style/durationhdl.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/style/durationhdl.cxx b/xmloff/source/style/durationhdl.cxx index f82b8c9f214b..f9df43136d90 100644 --- a/xmloff/source/style/durationhdl.cxx +++ b/xmloff/source/style/durationhdl.cxx @@ -4,9 +4,9 @@ * * $RCSfile: durationhdl.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: hr $ $Date: 2006-06-19 18:32:12 $ + * last change: $Author: ihi $ $Date: 2006-08-29 11:01:26 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -80,7 +80,7 @@ sal_Bool XMLDurationMS16PropHdl_Impl::exportXML( const Any& rValue, const SvXMLUnitConverter& ) const { - sal_Int16 nMS; + sal_Int16 nMS = sal_Int16(); if(rValue >>= nMS) { |