summaryrefslogtreecommitdiff
path: root/sw/source/uibase/docvw/SidebarWin.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2016-06-13 14:10:47 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-06-13 12:42:02 +0000
commite08e5615c96e4f709871e061b5a4f21333b8f139 (patch)
tree9e730f488f4d3d8ddaa796485283fdec6fafda15 /sw/source/uibase/docvw/SidebarWin.cxx
parente11f90fb28487503ffda1880857036f50430ef79 (diff)
sw comments: implement per-view LOK_CALLBACK_INVALIDATE_TILES
After registration and invalidation is handled per-view, the scrollbar and the text control of the comments is rendered correctly. Change-Id: I5cfa8b43fdc3a2ce7a008269b0283ee25d141440 Reviewed-on: https://gerrit.libreoffice.org/26218 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'sw/source/uibase/docvw/SidebarWin.cxx')
-rw-r--r--sw/source/uibase/docvw/SidebarWin.cxx9
1 files changed, 7 insertions, 2 deletions
diff --git a/sw/source/uibase/docvw/SidebarWin.cxx b/sw/source/uibase/docvw/SidebarWin.cxx
index d495b2e15f1f..60c78b80dcad 100644
--- a/sw/source/uibase/docvw/SidebarWin.cxx
+++ b/sw/source/uibase/docvw/SidebarWin.cxx
@@ -614,8 +614,13 @@ void SwSidebarWin::InitControls()
if (comphelper::LibreOfficeKit::isActive())
{
// If there is a callback already registered, inform the new outliner view about it.
- SwDrawModel* pDrawModel = mrView.GetWrtShellPtr()->getIDocumentDrawModelAccess().GetDrawModel();
- mpOutlinerView->registerLibreOfficeKitCallback(pDrawModel);
+ if (comphelper::LibreOfficeKit::isViewCallback())
+ mpOutlinerView->registerLibreOfficeKitViewCallback(&mrView);
+ else
+ {
+ SwDrawModel* pDrawModel = mrView.GetWrtShellPtr()->getIDocumentDrawModelAccess().GetDrawModel();
+ mpOutlinerView->registerLibreOfficeKitCallback(pDrawModel);
+ }
}
//create Scrollbars