summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2023-04-10 18:01:17 +0300
committerMike Kaganski <mike.kaganski@collabora.com>2023-04-10 20:09:26 +0200
commitf6fa9c455502e9a00e4a4cff6e19f3e17c5479c3 (patch)
tree2aec6ab1a00a8be7630b5b189269f076e2b7d2b0 /starmath
parentb454107b87ac78096d98fd7ceedcbfac71d247a0 (diff)
Use more *string_view
Change-Id: I1172febd45da4dba006f8495427fe45c6d9b9fa6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150187 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/view.cxx4
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();
}