summaryrefslogtreecommitdiffstats
path: root/sd/source/ui/slidesorter/controller/SlideSorterController.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/slidesorter/controller/SlideSorterController.cxx')
-rw-r--r--sd/source/ui/slidesorter/controller/SlideSorterController.cxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/sd/source/ui/slidesorter/controller/SlideSorterController.cxx b/sd/source/ui/slidesorter/controller/SlideSorterController.cxx
index 52e817eba7dc..207d288c29f3 100644
--- a/sd/source/ui/slidesorter/controller/SlideSorterController.cxx
+++ b/sd/source/ui/slidesorter/controller/SlideSorterController.cxx
@@ -213,50 +213,50 @@ model::SharedPageDescriptor SlideSorterController::GetPageAt (
PageSelector& SlideSorterController::GetPageSelector()
{
- OSL_ASSERT(mpPageSelector.get()!=nullptr);
- return *mpPageSelector.get();
+ OSL_ASSERT(mpPageSelector != nullptr);
+ return *mpPageSelector;
}
FocusManager& SlideSorterController::GetFocusManager()
{
- OSL_ASSERT(mpFocusManager.get()!=nullptr);
- return *mpFocusManager.get();
+ OSL_ASSERT(mpFocusManager != nullptr);
+ return *mpFocusManager;
}
Clipboard& SlideSorterController::GetClipboard()
{
- OSL_ASSERT(mpClipboard.get()!=nullptr);
- return *mpClipboard.get();
+ OSL_ASSERT(mpClipboard != nullptr);
+ return *mpClipboard;
}
ScrollBarManager& SlideSorterController::GetScrollBarManager()
{
- OSL_ASSERT(mpScrollBarManager.get()!=nullptr);
- return *mpScrollBarManager.get();
+ OSL_ASSERT(mpScrollBarManager != nullptr);
+ return *mpScrollBarManager;
}
std::shared_ptr<CurrentSlideManager> const & SlideSorterController::GetCurrentSlideManager() const
{
- OSL_ASSERT(mpCurrentSlideManager.get()!=nullptr);
+ OSL_ASSERT(mpCurrentSlideManager != nullptr);
return mpCurrentSlideManager;
}
std::shared_ptr<SlotManager> const & SlideSorterController::GetSlotManager() const
{
- OSL_ASSERT(mpSlotManager.get()!=nullptr);
+ OSL_ASSERT(mpSlotManager != nullptr);
return mpSlotManager;
}
std::shared_ptr<SelectionManager> const & SlideSorterController::GetSelectionManager() const
{
- OSL_ASSERT(mpSelectionManager.get()!=nullptr);
+ OSL_ASSERT(mpSelectionManager != nullptr);
return mpSelectionManager;
}
std::shared_ptr<InsertionIndicatorHandler> const &
SlideSorterController::GetInsertionIndicatorHandler() const
{
- OSL_ASSERT(mpInsertionIndicatorHandler.get()!=nullptr);
+ OSL_ASSERT(mpInsertionIndicatorHandler != nullptr);
return mpInsertionIndicatorHandler;
}