diff options
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/view.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/starmath/source/view.cxx b/starmath/source/view.cxx index e52e7eaa7cc1..daddbb51e9ac 100644 --- a/starmath/source/view.cxx +++ b/starmath/source/view.cxx @@ -510,7 +510,7 @@ void SmGraphicWidget::SetIsCursorVisible(bool bVis) { mrViewShell.SendCaretToLOK(); mrViewShell.libreOfficeKitViewCallback(LOK_CALLBACK_CURSOR_VISIBLE, - OString::boolean(bVis).getStr()); + OString::boolean(bVis)); } } @@ -2181,7 +2181,7 @@ public: if (comphelper::LibreOfficeKit::isActive()) if (auto pViewShell = GetViewShell_Impl()) pViewShell->libreOfficeKitViewCallback(LOK_CALLBACK_CURSOR_VISIBLE, - OString::boolean(false).getStr()); + OString::boolean(false)); SfxBaseController::dispose(); } |