summaryrefslogtreecommitdiff
path: root/sd/source/ui/slidesorter/view/SlsInsertAnimator.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/slidesorter/view/SlsInsertAnimator.cxx')
-rw-r--r--sd/source/ui/slidesorter/view/SlsInsertAnimator.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/slidesorter/view/SlsInsertAnimator.cxx b/sd/source/ui/slidesorter/view/SlsInsertAnimator.cxx
index e632dd59df61..7677b9015d0e 100644
--- a/sd/source/ui/slidesorter/view/SlsInsertAnimator.cxx
+++ b/sd/source/ui/slidesorter/view/SlsInsertAnimator.cxx
@@ -237,7 +237,7 @@ SharedPageObjectRun InsertAnimator::Implementation::GetRun (
nRow,
nStartIndex,
nEndIndex)).first;
- assert(iRun != maRuns.end());
+ OSL_ASSERT(iRun != maRuns.end());
}
}
}
@@ -266,7 +266,7 @@ void InsertAnimator::Implementation::AddRun (const std::shared_ptr<PageObjectRun
}
else
{
- assert(rRun);
+ OSL_ASSERT(rRun);
}
}
@@ -280,14 +280,14 @@ void InsertAnimator::Implementation::RemoveRun (const std::shared_ptr<PageObject
InsertAnimator::Implementation::RunContainer::const_iterator iRun (FindRun(rRun->mnRunIndex));
if (iRun != maRuns.end())
{
- assert(*iRun == rRun);
+ OSL_ASSERT(*iRun == rRun);
maRuns.erase(iRun);
}
}
}
else
{
- assert(rRun);
+ OSL_ASSERT(rRun);
}
}