diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-10-19 10:30:14 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-10-19 19:31:21 +0200 |
commit | 566de3328e60b2608b8f611698b6d26fc33b05f1 (patch) | |
tree | 72ab7fd9be4e1c66e61ec6377246aac4c99a35d9 /extensions/source/update | |
parent | 7eda35a36c8837c620722e5c26c90324ae9b48e9 (diff) |
Extended loplugin:ostr: Automatic rewrite O[U]StringLiteral: extensions
Change-Id: I30f81bdcd7ba877e65c8f134352669e22d78b033
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158192
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'extensions/source/update')
-rw-r--r-- | extensions/source/update/check/updatecheck.cxx | 2 | ||||
-rw-r--r-- | extensions/source/update/check/updatehdl.cxx | 20 | ||||
-rw-r--r-- | extensions/source/update/ui/updatecheckui.cxx | 12 |
3 files changed, 17 insertions, 17 deletions
diff --git a/extensions/source/update/check/updatecheck.cxx b/extensions/source/update/check/updatecheck.cxx index 1cac902eaccb..395d90444ed6 100644 --- a/extensions/source/update/check/updatecheck.cxx +++ b/extensions/source/update/check/updatecheck.cxx @@ -65,7 +65,7 @@ constexpr OUStringLiteral PROPERTY_TITLE = u"BubbleHeading"; constexpr OUStringLiteral PROPERTY_TEXT = u"BubbleText"; constexpr OUStringLiteral PROPERTY_SHOW_BUBBLE = u"BubbleVisible"; constexpr OUStringLiteral PROPERTY_CLICK_HDL = u"MenuClickHDL"; -constexpr OUStringLiteral PROPERTY_SHOW_MENUICON = u"MenuIconVisible"; +constexpr OUString PROPERTY_SHOW_MENUICON = u"MenuIconVisible"_ustr; // Returns the URL of the release note for the given position OUString getReleaseNote(const UpdateInfo& rInfo, sal_uInt8 pos, bool autoDownloadEnabled) diff --git a/extensions/source/update/check/updatehdl.cxx b/extensions/source/update/check/updatehdl.cxx index ed2261b4ec14..299a4f215f49 100644 --- a/extensions/source/update/check/updatehdl.cxx +++ b/extensions/source/update/check/updatehdl.cxx @@ -64,20 +64,20 @@ #include <tools/urlobj.hxx> #include <comphelper/diagnose_ex.hxx> -constexpr OUStringLiteral COMMAND_CLOSE = u"close"; +constexpr OUString COMMAND_CLOSE = u"close"_ustr; -constexpr OUStringLiteral CTRL_THROBBER = u"throbber"; -constexpr OUStringLiteral CTRL_PROGRESS = u"progress"; +constexpr OUString CTRL_THROBBER = u"throbber"_ustr; +constexpr OUString CTRL_PROGRESS = u"progress"_ustr; -constexpr OUStringLiteral TEXT_STATUS = u"text_status"; -constexpr OUStringLiteral TEXT_PERCENT = u"text_percent"; -constexpr OUStringLiteral TEXT_DESCRIPTION = u"text_description"; +constexpr OUString TEXT_STATUS = u"text_status"_ustr; +constexpr OUString TEXT_PERCENT = u"text_percent"_ustr; +constexpr OUString TEXT_DESCRIPTION = u"text_description"_ustr; constexpr OUStringLiteral FIXED_LINE_MODEL = u"com.sun.star.awt.UnoControlFixedLineModel"; -constexpr OUStringLiteral FIXED_TEXT_MODEL = u"com.sun.star.awt.UnoControlFixedTextModel"; -constexpr OUStringLiteral EDIT_FIELD_MODEL = u"com.sun.star.awt.UnoControlEditModel"; -constexpr OUStringLiteral BUTTON_MODEL = u"com.sun.star.awt.UnoControlButtonModel"; -constexpr OUStringLiteral GROUP_BOX_MODEL = u"com.sun.star.awt.UnoControlGroupBoxModel"; +constexpr OUString FIXED_TEXT_MODEL = u"com.sun.star.awt.UnoControlFixedTextModel"_ustr; +constexpr OUString EDIT_FIELD_MODEL = u"com.sun.star.awt.UnoControlEditModel"_ustr; +constexpr OUString BUTTON_MODEL = u"com.sun.star.awt.UnoControlButtonModel"_ustr; +constexpr OUString GROUP_BOX_MODEL = u"com.sun.star.awt.UnoControlGroupBoxModel"_ustr; using namespace com::sun::star; diff --git a/extensions/source/update/ui/updatecheckui.cxx b/extensions/source/update/ui/updatecheckui.cxx index f7f1f011363b..492cb92669ab 100644 --- a/extensions/source/update/ui/updatecheckui.cxx +++ b/extensions/source/update/ui/updatecheckui.cxx @@ -39,12 +39,12 @@ #include <bitmaps.hlst> -constexpr OUStringLiteral PROPERTY_TITLE = u"BubbleHeading"; -constexpr OUStringLiteral PROPERTY_TEXT = u"BubbleText"; -constexpr OUStringLiteral PROPERTY_IMAGE = u"BubbleImageURL"; -constexpr OUStringLiteral PROPERTY_SHOW_BUBBLE = u"BubbleVisible"; -constexpr OUStringLiteral PROPERTY_CLICK_HDL = u"MenuClickHDL"; -constexpr OUStringLiteral PROPERTY_SHOW_MENUICON = u"MenuIconVisible"; +constexpr OUString PROPERTY_TITLE = u"BubbleHeading"_ustr; +constexpr OUString PROPERTY_TEXT = u"BubbleText"_ustr; +constexpr OUString PROPERTY_IMAGE = u"BubbleImageURL"_ustr; +constexpr OUString PROPERTY_SHOW_BUBBLE = u"BubbleVisible"_ustr; +constexpr OUString PROPERTY_CLICK_HDL = u"MenuClickHDL"_ustr; +constexpr OUString PROPERTY_SHOW_MENUICON = u"MenuIconVisible"_ustr; using namespace ::com::sun::star; |