diff options
author | Kurt Zenker <kz@openoffice.org> | 2007-06-21 15:43:43 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2007-06-21 15:43:43 +0000 |
commit | 189cb6cba2048756cef9b122f4b63da141626cd3 (patch) | |
tree | 12aa35ee53245c9b03841e8b6acdbc79cd818664 /xmlscript/source | |
parent | 5db39e8a7fd66bcfa86c74bd704a58e5f5e14a57 (diff) |
#i78771# warning as error breaks the build
Diffstat (limited to 'xmlscript/source')
-rw-r--r-- | xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx b/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx index 7df404b15a9c..b7b16546f77f 100644 --- a/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx +++ b/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx @@ -4,9 +4,9 @@ * * $RCSfile: xmldlg_expmodels.cxx,v $ * - * $Revision: 1.31 $ + * $Revision: 1.32 $ * - * last change: $Author: kz $ $Date: 2007-06-20 10:33:01 $ + * last change: $Author: kz $ $Date: 2007-06-21 16:43:43 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -1080,7 +1080,7 @@ void ElementDescriptor::readDialogModel( StyleBag * all_styles ) OUString( RTL_CONSTASCII_USTRINGPARAM(XMLNS_DIALOGS_PREFIX ":title") ) ); Any aDecorationAny( _xProps->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM("Decoration") ) ) ); - bool bDecoration; + bool bDecoration = sal_False; if ( (aDecorationAny >>= bDecoration) && !bDecoration ) addAttribute( OUString( RTL_CONSTASCII_USTRINGPARAM(XMLNS_DIALOGS_PREFIX ":withtitlebar") ), OUString( RTL_CONSTASCII_USTRINGPARAM("false") ) ); |