Kaydet (Commit) 50d4fffa authored tarafından Nigel Hawkins's avatar Nigel Hawkins

Replace SvULongs with std::vector in htmlplug.cxx. LGPLv3+/MPL.

üst d744dfc1
......@@ -1171,7 +1171,7 @@ Writer& OutHTML_FrmFmtOLENode( Writer& rWrt, const SwFrmFmt& rFrmFmt,
SvCommandList aCommands;
aCommands.FillFromSequence( aProps );
SvULongs aParams;
std::vector<sal_uLong> aParams;
size_t i = aCommands.size();
while( i > 0 )
{
......@@ -1188,7 +1188,7 @@ Writer& OutHTML_FrmFmtOLENode( Writer& rWrt, const SwFrmFmt& rFrmFmt,
}
else if( SWHTML_OPTTYPE_PARAM == nType )
{
aParams.Insert( i, aParams.Count() );
aParams.push_back( i );
}
}
......@@ -1196,7 +1196,7 @@ Writer& OutHTML_FrmFmtOLENode( Writer& rWrt, const SwFrmFmt& rFrmFmt,
rHTMLWrt.IncIndentLevel(); // Inhalt von Applet einruecken
sal_uInt16 ii = aParams.Count();
sal_uInt16 ii = aParams.size();
while( ii > 0 )
{
const SvCommand& rCommand = aCommands[ aParams[--ii] ];
......
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