summaryrefslogtreecommitdiff
path: root/svx/source/items/zoomslideritem.cxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-05-06 16:32:22 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-05-06 16:51:45 +0200
commite2e2cc61144cb22227eebfadff0ea24b51ccfbd0 (patch)
tree8063275cabcdf32e30c37451a32d96db5929561a /svx/source/items/zoomslideritem.cxx
parentd01768c31a0658c8a74e0dd3a95b2d781639d18e (diff)
remove usage of RTL_CONSTASCII_USTRINGPARAM
Mechanical removal of usage together with OUString ctor, done by compiler plugin. Change-Id: I554227f76df0dac620b1b46fca32516f78b462c5
Diffstat (limited to 'svx/source/items/zoomslideritem.cxx')
-rw-r--r--svx/source/items/zoomslideritem.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/items/zoomslideritem.cxx b/svx/source/items/zoomslideritem.cxx
index ef19d6dc52a3..eb04b54c04e0 100644
--- a/svx/source/items/zoomslideritem.cxx
+++ b/svx/source/items/zoomslideritem.cxx
@@ -96,13 +96,13 @@ bool SvxZoomSliderItem::QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nM
case 0 :
{
::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aSeq( ZOOMSLIDER_PARAMS );
- aSeq[0].Name = OUString( RTL_CONSTASCII_USTRINGPARAM( ZOOMSLIDER_PARAM_CURRENTZOOM ));
+ aSeq[0].Name = OUString( ZOOMSLIDER_PARAM_CURRENTZOOM );
aSeq[0].Value <<= sal_Int32( GetValue() );
- aSeq[1].Name = OUString( RTL_CONSTASCII_USTRINGPARAM( ZOOMSLIDER_PARAM_SNAPPINGPOINTS ));
+ aSeq[1].Name = OUString( ZOOMSLIDER_PARAM_SNAPPINGPOINTS );
aSeq[1].Value <<= maValues;
- aSeq[2].Name = OUString( RTL_CONSTASCII_USTRINGPARAM( ZOOMSLIDER_PARAM_MINZOOM ) );
+ aSeq[2].Name = OUString( ZOOMSLIDER_PARAM_MINZOOM );
aSeq[2].Value <<= mnMinZoom;
- aSeq[3].Name = OUString( RTL_CONSTASCII_USTRINGPARAM( ZOOMSLIDER_PARAM_MAXZOOM ) );
+ aSeq[3].Name = OUString( ZOOMSLIDER_PARAM_MAXZOOM );
aSeq[3].Value <<= mnMaxZoom;
rVal <<= aSeq;
}