summaryrefslogtreecommitdiff
path: root/sd/source/ui/slidesorter/controller/SlsSelectionObserver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/slidesorter/controller/SlsSelectionObserver.cxx')
-rw-r--r--sd/source/ui/slidesorter/controller/SlsSelectionObserver.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/slidesorter/controller/SlsSelectionObserver.cxx b/sd/source/ui/slidesorter/controller/SlsSelectionObserver.cxx
index 4f5a669fa339..cf1ed111faaf 100644
--- a/sd/source/ui/slidesorter/controller/SlsSelectionObserver.cxx
+++ b/sd/source/ui/slidesorter/controller/SlsSelectionObserver.cxx
@@ -89,21 +89,21 @@ void SelectionObserver::NotifyPageEvent (const SdrPage* pSdrPage)
void SelectionObserver::StartObservation()
{
- assert(!mbIsOvservationActive);
+ OSL_ASSERT(!mbIsOvservationActive);
maInsertedPages.clear();
mbIsOvservationActive = true;
}
void SelectionObserver::AbortObservation()
{
- assert(mbIsOvservationActive);
+ OSL_ASSERT(mbIsOvservationActive);
mbIsOvservationActive = false;
maInsertedPages.clear();
}
void SelectionObserver::EndObservation()
{
- assert(mbIsOvservationActive);
+ OSL_ASSERT(mbIsOvservationActive);
mbIsOvservationActive = false;
PageSelector& rSelector (mrSlideSorter.GetController().GetPageSelector());