diff options
-rw-r--r-- | sc/inc/docuno.hxx | 3 | ||||
-rw-r--r-- | sc/source/ui/unoobj/docuno.cxx | 11 |
2 files changed, 14 insertions, 0 deletions
diff --git a/sc/inc/docuno.hxx b/sc/inc/docuno.hxx index f155888c80e0..3369cbed0edb 100644 --- a/sc/inc/docuno.hxx +++ b/sc/inc/docuno.hxx @@ -412,6 +412,9 @@ public: /// @see lok::Document::resetSelection(). virtual void resetSelection() override; + + /// @see vcl::ITiledRenderable::getWindow(). + virtual vcl::Window* getWindow() override; }; class ScDrawPagesObj : public cppu::WeakImplHelper< diff --git a/sc/source/ui/unoobj/docuno.cxx b/sc/source/ui/unoobj/docuno.cxx index 3d3e7b7ee65a..cc1004522024 100644 --- a/sc/source/ui/unoobj/docuno.cxx +++ b/sc/source/ui/unoobj/docuno.cxx @@ -845,6 +845,17 @@ void ScModelObj::resetSelection() pDocShell->GetDocument().GetDrawLayer()->libreOfficeKitCallback(LOK_CALLBACK_TEXT_SELECTION, ""); } +vcl::Window* ScModelObj::getWindow() +{ + SolarMutexGuard aGuard; + + ScViewData* pViewData = ScDocShell::GetViewData(); + if (!pViewData) + return 0; + + return pViewData->GetActiveWin(); +} + void ScModelObj::initializeForTiledRendering() { SolarMutexGuard aGuard; |