Kaydet (Commit) 1051c035 authored tarafından Miklos Vajna's avatar Miklos Vajna

sw: fix -Werror=shadow

Change-Id: I8ad37290a2b5dab41d180799f9e5ec7d603952ba
üst 5f296f9b
...@@ -3301,12 +3301,12 @@ void _CellSaveStruct::InsertCell( SwHTMLParser& rParser, ...@@ -3301,12 +3301,12 @@ void _CellSaveStruct::InsertCell( SwHTMLParser& rParser,
if( rParser.nContextStAttrMin == GetContextStAttrMin() ) if( rParser.nContextStAttrMin == GetContextStAttrMin() )
{ {
_HTMLAttr** pTable = reinterpret_cast<_HTMLAttr**>(&rParser.aAttrTab); _HTMLAttr** pHTMLTable = reinterpret_cast<_HTMLAttr**>(&rParser.aAttrTab);
for( sal_uInt16 nCnt = sizeof( _HTMLAttrTable ) / sizeof( _HTMLAttr* ); for( sal_uInt16 nCnt = sizeof( _HTMLAttrTable ) / sizeof( _HTMLAttr* );
nCnt--; ++pTable ) nCnt--; ++pHTMLTable )
{ {
OSL_ENSURE( !*pTable, "Die Attribut-Tabelle ist nicht leer" ); OSL_ENSURE( !*pHTMLTable, "Die Attribut-Tabelle ist nicht leer" );
} }
} }
#endif #endif
......
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