diff options
author | Kurt Zenker <kz@openoffice.org> | 2006-07-19 15:44:37 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2006-07-19 15:44:37 +0000 |
commit | ee366cb08acf0d000aff9e8fad66e21a591757cb (patch) | |
tree | e25981c4250e0d1ced85511f404178c3c3da4a18 /forms | |
parent | 79b700d9b70e175e420032cffddc25924f027593 (diff) |
INTEGRATION: CWS warningfixes02 (1.5.4); FILE MERGED
2006/06/30 12:17:36 sb 1.5.4.1: #i66577# Made the code compile (warning-free) on a unxlngi6.pro GCC 4.1.1 Linux box.
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/xforms/propertysetbase.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/forms/source/xforms/propertysetbase.hxx b/forms/source/xforms/propertysetbase.hxx index 8619836d30ec..e72cd4ccbd3e 100644 --- a/forms/source/xforms/propertysetbase.hxx +++ b/forms/source/xforms/propertysetbase.hxx @@ -4,9 +4,9 @@ * * $RCSfile: propertysetbase.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: hr $ $Date: 2006-06-19 13:04:41 $ + * last change: $Author: kz $ $Date: 2006-07-19 16:44:37 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -109,7 +109,7 @@ public: virtual void setValue( const com::sun::star::uno::Any& rValue ) { - VALUE aTypedVal; + VALUE aTypedVal = VALUE(); OSL_VERIFY( rValue >>= aTypedVal ); (m_pInstance->*m_pWriter)( aTypedVal ); } |