Author: paveljanik Date: Wed Apr 10 19:34:48 2013 New Revision: 1466640 URL: http://svn.apache.org/r1466640 Log: Use proper variable type to prevent comparing signed and unsigned variables (WaE).
Modified: openoffice/trunk/main/svx/source/sidebar/tools/ValueSetWithTextControl.cxx Modified: openoffice/trunk/main/svx/source/sidebar/tools/ValueSetWithTextControl.cxx URL: http://svn.apache.org/viewvc/openoffice/trunk/main/svx/source/sidebar/tools/ValueSetWithTextControl.cxx?rev=1466640&r1=1466639&r2=1466640&view=diff ============================================================================== --- openoffice/trunk/main/svx/source/sidebar/tools/ValueSetWithTextControl.cxx (original) +++ openoffice/trunk/main/svx/source/sidebar/tools/ValueSetWithTextControl.cxx Wed Apr 10 19:34:48 2013 @@ -274,7 +274,7 @@ void SvxNumValueSet2::SetNumberingSettin InsertItem( DEFAULT_NONE, DEFAULT_NONE - 1 ); SetItemText( DEFAULT_NONE, SVX_RESSTR( RID_SVXSTR_NUMBULLET_NONE )); - for ( sal_uInt32 i = 0; i < aNum.getLength(); i++ ) + for ( sal_Int32 i = 0; i < aNum.getLength(); i++ ) { InsertItem( i + 1); if( i < 8 )