diff options
Diffstat (limited to 'svx/source/items')
-rw-r--r-- | svx/source/items/statusitem.cxx | 4 | ||||
-rw-r--r-- | svx/source/items/viewlayoutitem.cxx | 4 | ||||
-rw-r--r-- | svx/source/items/zoomslideritem.cxx | 8 |
3 files changed, 8 insertions, 8 deletions
diff --git a/svx/source/items/statusitem.cxx b/svx/source/items/statusitem.cxx index 3b326f39ebe0..d856775db1f8 100644 --- a/svx/source/items/statusitem.cxx +++ b/svx/source/items/statusitem.cxx @@ -13,8 +13,8 @@ #include <svl/memberid.h> #include <svx/statusitem.hxx> -constexpr OUStringLiteral STATUS_PARAM_VALUE = u"Value"; -constexpr OUStringLiteral STATUS_PARAM_TYPE = u"Type"; +constexpr OUString STATUS_PARAM_VALUE = u"Value"_ustr; +constexpr OUString STATUS_PARAM_TYPE = u"Type"_ustr; constexpr int STATUS_PARAMS = 2; SvxStatusItem::SvxStatusItem(TypedWhichId<SvxStatusItem> nWhich, const OUString& rString, diff --git a/svx/source/items/viewlayoutitem.cxx b/svx/source/items/viewlayoutitem.cxx index d923133a19bc..839f49a3614a 100644 --- a/svx/source/items/viewlayoutitem.cxx +++ b/svx/source/items/viewlayoutitem.cxx @@ -29,8 +29,8 @@ SfxPoolItem* SvxViewLayoutItem::CreateDefault() { return new SvxViewLayoutItem; } -constexpr OUStringLiteral VIEWLAYOUT_PARAM_COLUMNS = u"Columns"; -constexpr OUStringLiteral VIEWLAYOUT_PARAM_BOOKMODE = u"BookMode"; +constexpr OUString VIEWLAYOUT_PARAM_COLUMNS = u"Columns"_ustr; +constexpr OUString VIEWLAYOUT_PARAM_BOOKMODE = u"BookMode"_ustr; #define VIEWLAYOUT_PARAMS 2 diff --git a/svx/source/items/zoomslideritem.cxx b/svx/source/items/zoomslideritem.cxx index 046a0359153c..b59247b00d31 100644 --- a/svx/source/items/zoomslideritem.cxx +++ b/svx/source/items/zoomslideritem.cxx @@ -28,10 +28,10 @@ SfxPoolItem* SvxZoomSliderItem::CreateDefault() { return new SvxZoomSliderItem; } -constexpr OUStringLiteral ZOOMSLIDER_PARAM_CURRENTZOOM = u"Columns"; -constexpr OUStringLiteral ZOOMSLIDER_PARAM_SNAPPINGPOINTS = u"SnappingPoints"; -constexpr OUStringLiteral ZOOMSLIDER_PARAM_MINZOOM = u"MinValue"; -constexpr OUStringLiteral ZOOMSLIDER_PARAM_MAXZOOM = u"MaxValue"; +constexpr OUString ZOOMSLIDER_PARAM_CURRENTZOOM = u"Columns"_ustr; +constexpr OUString ZOOMSLIDER_PARAM_SNAPPINGPOINTS = u"SnappingPoints"_ustr; +constexpr OUString ZOOMSLIDER_PARAM_MINZOOM = u"MinValue"_ustr; +constexpr OUString ZOOMSLIDER_PARAM_MAXZOOM = u"MaxValue"_ustr; #define ZOOMSLIDER_PARAMS 4 |