summaryrefslogtreecommitdiffstats
path: root/reportdesign/source/core/sdr/formatnormalizer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'reportdesign/source/core/sdr/formatnormalizer.cxx')
-rw-r--r--reportdesign/source/core/sdr/formatnormalizer.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/reportdesign/source/core/sdr/formatnormalizer.cxx b/reportdesign/source/core/sdr/formatnormalizer.cxx
index 1032158af108..97168a5213b9 100644
--- a/reportdesign/source/core/sdr/formatnormalizer.cxx
+++ b/reportdesign/source/core/sdr/formatnormalizer.cxx
@@ -145,10 +145,10 @@ namespace rptui
for ( sal_Int32 i=0; i<nCount; ++i )
{
xColumn.set( _rxColumns->getByIndex( i ), UNO_QUERY_THROW );
- OSL_VERIFY( xColumn->getPropertyValue( OUString( "Name" ) ) >>= aField.sName );
- OSL_VERIFY( xColumn->getPropertyValue( OUString( "Type" ) ) >>= aField.nDataType );
- OSL_VERIFY( xColumn->getPropertyValue( OUString( "Scale" ) ) >>= aField.nScale );
- OSL_VERIFY( xColumn->getPropertyValue( OUString( "IsCurrency" ) ) >>= aField.bIsCurrency );
+ OSL_VERIFY( xColumn->getPropertyValue("Name") >>= aField.sName );
+ OSL_VERIFY( xColumn->getPropertyValue("Type") >>= aField.nDataType );
+ OSL_VERIFY( xColumn->getPropertyValue("Scale") >>= aField.nScale );
+ OSL_VERIFY( xColumn->getPropertyValue("IsCurrency") >>= aField.bIsCurrency );
_inout_rFields.push_back( aField );
}
}