Kaydet (Commit) 47f8170e authored tarafından Rishabh Kumar's avatar Rishabh Kumar Kaydeden (comit) Rishabh Kumar

Change data type of loop variant to size_type

Change-Id: I7ec187defb51362caddef3439a1a09257ef9f4dc
Reviewed-on: https://gerrit.libreoffice.org/27729Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarRishabh Kumar <kris.kr296@yahoo.in>
üst 0acd13ec
......@@ -228,7 +228,7 @@ void PaletteManager::AddRecentColor(const Color& rRecentColor)
if( maRecentColors.size() > mnMaxRecentColors )
maRecentColors.pop_back();
css::uno::Sequence< sal_Int32 > aColorList(maRecentColors.size());
for(sal_uInt32 i = 0;i < maRecentColors.size();i++)
for(std::deque<Color>::size_type i = 0;i < maRecentColors.size();i++)
{
aColorList[i] = static_cast<sal_Int32>(maRecentColors[i].GetColor());
}
......
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