Kaydet (Commit) b82fee00 authored tarafından Kurt Zenker's avatar Kurt Zenker

INTEGRATION: CWS warningfixes02 (1.36.10); FILE MERGED

2006/06/30 12:00:23 sb 1.36.10.1: #i66577# Made the code compile (warning-free) on a unxlngi6.pro GCC 4.1.1 Linux box.
üst 3d332deb
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
* *
* $RCSfile: xmlnumi.cxx,v $ * $RCSfile: xmlnumi.cxx,v $
* *
* $Revision: 1.36 $ * $Revision: 1.37 $
* *
* last change: $Author: hr $ $Date: 2006-06-19 18:37:09 $ * last change: $Author: kz $ $Date: 2006-07-19 16:37:05 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
...@@ -795,7 +795,7 @@ SvxXMLListLevelStyleAttrContext_Impl::SvxXMLListLevelStyleAttrContext_Impl( ...@@ -795,7 +795,7 @@ SvxXMLListLevelStyleAttrContext_Impl::SvxXMLListLevelStyleAttrContext_Impl(
if( pFontDecls->FillProperties( sFontName, aProps, 0, 1, 2, 3, 4 ) ) if( pFontDecls->FillProperties( sFontName, aProps, 0, 1, 2, 3, 4 ) )
{ {
OUString sTmp; OUString sTmp;
sal_Int16 nTmp; sal_Int16 nTmp = 0;
::std::vector< XMLPropertyState >::iterator i; ::std::vector< XMLPropertyState >::iterator i;
for( i = aProps.begin(); i != aProps.end(); i++ ) for( i = aProps.begin(); i != aProps.end(); i++ )
{ {
...@@ -843,7 +843,7 @@ SvxXMLListLevelStyleAttrContext_Impl::SvxXMLListLevelStyleAttrContext_Impl( ...@@ -843,7 +843,7 @@ SvxXMLListLevelStyleAttrContext_Impl::SvxXMLListLevelStyleAttrContext_Impl(
if( sFontFamilyGeneric.getLength() && if( sFontFamilyGeneric.getLength() &&
aFamilyHdl.importXML( sFontFamilyGeneric, aAny, rUnitConv ) ) aFamilyHdl.importXML( sFontFamilyGeneric, aAny, rUnitConv ) )
{ {
sal_Int16 nTmp; sal_Int16 nTmp = 0;
aAny >>= nTmp; aAny >>= nTmp;
rListLevel.SetBulletFontFamily( nTmp ); rListLevel.SetBulletFontFamily( nTmp );
} }
...@@ -855,7 +855,7 @@ SvxXMLListLevelStyleAttrContext_Impl::SvxXMLListLevelStyleAttrContext_Impl( ...@@ -855,7 +855,7 @@ SvxXMLListLevelStyleAttrContext_Impl::SvxXMLListLevelStyleAttrContext_Impl(
if( sFontPitch.getLength() && if( sFontPitch.getLength() &&
aPitchHdl.importXML( sFontPitch, aAny, rUnitConv ) ) aPitchHdl.importXML( sFontPitch, aAny, rUnitConv ) )
{ {
sal_Int16 nTmp; sal_Int16 nTmp = 0;
aAny >>= nTmp; aAny >>= nTmp;
rListLevel.SetBulletFontPitch( nTmp ); rListLevel.SetBulletFontPitch( nTmp );
} }
...@@ -864,7 +864,7 @@ SvxXMLListLevelStyleAttrContext_Impl::SvxXMLListLevelStyleAttrContext_Impl( ...@@ -864,7 +864,7 @@ SvxXMLListLevelStyleAttrContext_Impl::SvxXMLListLevelStyleAttrContext_Impl(
if( sFontCharset.getLength() && if( sFontCharset.getLength() &&
aEncHdl.importXML( sFontCharset, aAny, rUnitConv ) ) aEncHdl.importXML( sFontCharset, aAny, rUnitConv ) )
{ {
sal_Int16 nTmp; sal_Int16 nTmp = 0;
aAny >>= nTmp; aAny >>= nTmp;
rListLevel.SetBulletFontEncoding( nTmp ); rListLevel.SetBulletFontEncoding( nTmp );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment