Kaydet (Commit) 20a3aee5 authored tarafından Armin Le Grand's avatar Armin Le Grand

Corrected signed/unsigned mix

üst 4be8cc07
......@@ -687,7 +687,7 @@ void SlideSorterModel::DeleteSlide (const SdPage* pPage)
else
{
// if not inserted, search for page
for(; nIndex < maPageDescriptors.size(); nIndex++)
for(; nIndex < static_cast<sal_Int32>(maPageDescriptors.size()); nIndex++)
{
if(maPageDescriptors[nIndex]->GetPage() == pPage)
{
......@@ -696,7 +696,7 @@ void SlideSorterModel::DeleteSlide (const SdPage* pPage)
}
}
if(nIndex >= 0 && nIndex < maPageDescriptors.size())
if(nIndex >= 0 && nIndex < static_cast<sal_Int32>(maPageDescriptors.size()))
{
if (maPageDescriptors[nIndex])
if (maPageDescriptors[nIndex]->GetPage() != pPage)
......
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