diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-06-05 10:19:03 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-06-05 19:35:11 +0200 |
commit | 78eb0a3c67ba2285f3737a584a133536beee3b17 (patch) | |
tree | 04ab09619a62bcd7b1eccc3aad10a9b8d06d62df /sw/source/uibase/uiview/view0.cxx | |
parent | 20ba17a928acbba022b2f19b7a88a6cc5cdebfde (diff) |
loplugin:ostr in sw/.../uiview
Change-Id: Id50d9549bb925f3ff2f4db79058b600a25349576
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168426
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/uibase/uiview/view0.cxx')
-rw-r--r-- | sw/source/uibase/uiview/view0.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/uiview/view0.cxx b/sw/source/uibase/uiview/view0.cxx index 488b32cc5fee..8d236be3ce87 100644 --- a/sw/source/uibase/uiview/view0.cxx +++ b/sw/source/uibase/uiview/view0.cxx @@ -551,7 +551,7 @@ void SwView::ExecViewOptions(SfxRequest &rReq) case SID_SPOTLIGHT_PARASTYLES: if (!pArgs || (pArgs && !pArgs->HasItem(FN_PARAM_1))) { - const SfxStringItem sDeckName(SID_SIDEBAR_DECK, "StyleListDeck"); + const SfxStringItem sDeckName(SID_SIDEBAR_DECK, u"StyleListDeck"_ustr); GetDispatcher().ExecuteList(SID_SIDEBAR_DECK, SfxCallMode::SYNCHRON, { &sDeckName }); } if (STATE_TOGGLE == eState) @@ -562,7 +562,7 @@ void SwView::ExecViewOptions(SfxRequest &rReq) case SID_SPOTLIGHT_CHARSTYLES: if (!pArgs || (pArgs && !pArgs->HasItem(FN_PARAM_1))) { - const SfxStringItem sDeckName(SID_SIDEBAR_DECK, "StyleListDeck"); + const SfxStringItem sDeckName(SID_SIDEBAR_DECK, u"StyleListDeck"_ustr); GetDispatcher().ExecuteList(SID_SIDEBAR_DECK, SfxCallMode::SYNCHRON, { &sDeckName }); } if (STATE_TOGGLE == eState) |