diff options
Diffstat (limited to 'sw/source/uibase/docvw/edtwin.cxx')
-rw-r--r-- | sw/source/uibase/docvw/edtwin.cxx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sw/source/uibase/docvw/edtwin.cxx b/sw/source/uibase/docvw/edtwin.cxx index dfa4306a5177..b51d56b32506 100644 --- a/sw/source/uibase/docvw/edtwin.cxx +++ b/sw/source/uibase/docvw/edtwin.cxx @@ -6235,4 +6235,19 @@ void SwEditWin::SwitchView() #endif } +void SwEditWin::LogicInvalidate(const vcl::Region* pRegion) +{ + OString sRectangle; + if (!pRegion) + sRectangle = "EMPTY"; + else + { + std::stringstream ss; + Rectangle aRectangle = pRegion->GetBoundRect(); + ss << aRectangle.getWidth() << ", " << aRectangle.getHeight() << ", " << aRectangle.getX() << ", " << aRectangle.getY(); + sRectangle = ss.str().c_str(); + } + m_rView.GetWrtShell().libreOfficeKitCallback(0, sRectangle.getStr()); +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |