summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:13:32 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:13:32 +0000
commit1a9f63f899d3da5fd0b9341f2aafe62976c049c7 (patch)
treec4692094844b884a41a41b824427512abdad7133 /svtools
parent050cc95908fbe567e1fbabac94f982b04534f728 (diff)
INTEGRATION: CWS warningfixes03_SRC680 (1.21.44); FILE MERGED
2006/08/18 14:31:25 mhu 1.21.44.1: #i68745# Fixed GCC 4.0.x warning(s).
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/uno/unoiface.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/svtools/source/uno/unoiface.cxx b/svtools/source/uno/unoiface.cxx
index f542a1d325ba..6855a0a1bff8 100644
--- a/svtools/source/uno/unoiface.cxx
+++ b/svtools/source/uno/unoiface.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: unoiface.cxx,v $
*
- * $Revision: 1.21 $
+ * $Revision: 1.22 $
*
- * last change: $Author: kz $ $Date: 2006-07-19 17:11:15 $
+ * last change: $Author: ihi $ $Date: 2006-08-29 11:13:32 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -464,21 +464,21 @@ void VCLXMultiLineEdit::setProperty( const ::rtl::OUString& PropertyName, const
case BASEPROPERTY_READONLY:
{
- sal_Bool b;
+ sal_Bool b = sal_Bool();
if ( Value >>= b )
pMultiLineEdit->SetReadOnly( b );
}
break;
case BASEPROPERTY_MAXTEXTLEN:
{
- sal_Int16 n;
+ sal_Int16 n = sal_Int16();
if ( Value >>= n )
pMultiLineEdit->SetMaxTextLen( n );
}
break;
case BASEPROPERTY_HIDEINACTIVESELECTION:
{
- sal_Bool b;
+ sal_Bool b = sal_Bool();
if ( Value >>= b )
{
pMultiLineEdit->EnableFocusSelectionHide( b );
@@ -954,7 +954,7 @@ void SVTXFormattedField::setProperty( const ::rtl::OUString& PropertyName, const
case BASEPROPERTY_TREATASNUMBER:
{
- sal_Bool b;
+ sal_Bool b = sal_Bool();
if ( Value >>= b )
SetTreatAsNumber(b);
}
@@ -1024,7 +1024,7 @@ void SVTXFormattedField::setProperty( const ::rtl::OUString& PropertyName, const
break;
case BASEPROPERTY_NUMSHOWTHOUSANDSEP:
{
- sal_Bool b;
+ sal_Bool b = sal_Bool();
if ( Value >>= b )
pField->SetThousandsSep( b );
}