UnoControls/source/controls/progressmonitor.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit 09aa200bf051583b17cd300b19d2096a27af8143 Author: codemaestro <[email protected]> AuthorDate: Thu Oct 23 19:37:02 2025 +0530 Commit: Hossein <[email protected]> CommitDate: Fri Oct 24 12:21:36 2025 +0200 tdf#158067: Replace O(U)StringLiterals with custom O(U)String literals Change-Id: Iaef3a4906479e7b7735168eea5ff05f8497d132b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/192687 Reviewed-by: Hossein <[email protected]> Tested-by: Jenkins diff --git a/UnoControls/source/controls/progressmonitor.cxx b/UnoControls/source/controls/progressmonitor.cxx index 018966aa5468..56de68761570 100644 --- a/UnoControls/source/controls/progressmonitor.cxx +++ b/UnoControls/source/controls/progressmonitor.cxx @@ -40,9 +40,9 @@ using namespace ::com::sun::star::awt; using ::std::vector; constexpr OUString CONTROLNAME_TEXT = u"Text"_ustr; // identifier the control in container -constexpr OUStringLiteral CONTROLNAME_PROGRESSBAR = u"ProgressBar"; -constexpr OUStringLiteral CONTROLNAME_BUTTON = u"Button"; -constexpr OUStringLiteral DEFAULT_BUTTONLABEL = u"Abbrechen"; +constexpr OUString CONTROLNAME_PROGRESSBAR = u"ProgressBar"_ustr; +constexpr OUString CONTROLNAME_BUTTON = u"Button"_ustr; +constexpr OUString DEFAULT_BUTTONLABEL = u"Abbrechen"_ustr; namespace unocontrols {
