summaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2013-04-01 23:01:59 +0200
committerXisco Fauli <anistenis@gmail.com>2013-04-01 23:04:36 +0200
commitc6ba5edabc427bfddd850b1e8e586d5e440246c2 (patch)
tree0919c6adccdc6a5cf255f1fe0c790d9e82357dfd /filter
parentFix #119510# - fix some invalid FLY_AT_PARA case: (diff)
downloadcore-c6ba5edabc427bfddd850b1e8e586d5e440246c2.tar.gz
core-c6ba5edabc427bfddd850b1e8e586d5e440246c2.zip
Related to #120039: Remove RTL_CONSTASCII_USTRINGPARAM
Change-Id: Idc6bae019e972ad512158c71376f7995ab8cf2db
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/escherex.cxx18
1 files changed, 6 insertions, 12 deletions
diff --git a/filter/source/msfilter/escherex.cxx b/filter/source/msfilter/escherex.cxx
index 880cc518a5c0..6449ba8a543c 100644
--- a/filter/source/msfilter/escherex.cxx
+++ b/filter/source/msfilter/escherex.cxx
@@ -1455,33 +1455,27 @@ sal_Bool EscherPropertyContainer::CreateGraphicProperties(
if ( eBitmapMode == ::com::sun::star::drawing::BitmapMode_REPEAT )
{
sal_Int32 nSizeX = 0,nSizeY = 0,nOffsetX = 0,nOffsetY = 0,nPosOffsetX = 0,nPosOffsetY = 0;
- if ( EscherPropertyValueHelper::GetPropertyValue( aAny, rXPropSet,
- String( RTL_CONSTASCII_USTRINGPARAM( "FillBitmapSizeX" ) ), sal_True ) )
+ if ( EscherPropertyValueHelper::GetPropertyValue( aAny, rXPropSet, "FillBitmapSizeX", sal_True ) )
{
aAny >>= nSizeX;
}
- if ( EscherPropertyValueHelper::GetPropertyValue( aAny, rXPropSet,
- String( RTL_CONSTASCII_USTRINGPARAM( "FillBitmapSizeY" ) ), sal_True ) )
+ if ( EscherPropertyValueHelper::GetPropertyValue( aAny, rXPropSet, "FillBitmapSizeY", sal_True ) )
{
aAny >>= nSizeY;
}
- if ( EscherPropertyValueHelper::GetPropertyValue( aAny, rXPropSet,
- String( RTL_CONSTASCII_USTRINGPARAM( "FillBitmapOffsetX" ) ), sal_True ) )
+ if ( EscherPropertyValueHelper::GetPropertyValue( aAny, rXPropSet, "FillBitmapOffsetX", sal_True ) )
{
aAny >>= nOffsetX;
}
- if ( EscherPropertyValueHelper::GetPropertyValue( aAny, rXPropSet,
- String( RTL_CONSTASCII_USTRINGPARAM( "FillBitmapOffsetY" ) ), sal_True ) )
+ if ( EscherPropertyValueHelper::GetPropertyValue( aAny, rXPropSet, "FillBitmapOffsetY", sal_True ) )
{
aAny >>= nOffsetY;
}
- if ( EscherPropertyValueHelper::GetPropertyValue( aAny, rXPropSet,
- String( RTL_CONSTASCII_USTRINGPARAM( "FillBitmapPositionOffsetX" ) ), sal_True ) )
+ if ( EscherPropertyValueHelper::GetPropertyValue( aAny, rXPropSet, "FillBitmapPositionOffsetX", sal_True ) )
{
aAny >>= nPosOffsetX;
}
- if ( EscherPropertyValueHelper::GetPropertyValue( aAny, rXPropSet,
- String( RTL_CONSTASCII_USTRINGPARAM( "FillBitmapPositionOffsetY" ) ), sal_True ) )
+ if ( EscherPropertyValueHelper::GetPropertyValue( aAny, rXPropSet, "FillBitmapPositionOffsetY", sal_True ) )
{
aAny >>= nPosOffsetY;
}