summaryrefslogtreecommitdiff
path: root/connectivity/source/commontools/predicateinput.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/commontools/predicateinput.cxx')
-rw-r--r--connectivity/source/commontools/predicateinput.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/commontools/predicateinput.cxx b/connectivity/source/commontools/predicateinput.cxx
index bf8092fe5c24..82d170266684 100644
--- a/connectivity/source/commontools/predicateinput.cxx
+++ b/connectivity/source/commontools/predicateinput.cxx
@@ -140,7 +140,7 @@ namespace dbtools
if ( !pReturn )
{ // is it a text field ?
sal_Int32 nType = DataType::OTHER;
- _rxField->getPropertyValue( OUString( "Type" ) ) >>= nType;
+ _rxField->getPropertyValue("Type") >>= nType;
if ( ( DataType::CHAR == nType )
|| ( DataType::VARCHAR == nType )
@@ -199,10 +199,10 @@ namespace dbtools
try
{
Reference< XPropertySetInfo > xPSI( _rxField->getPropertySetInfo() );
- if ( xPSI.is() && xPSI->hasPropertyByName( OUString( "FormatKey" ) ) )
+ if ( xPSI.is() && xPSI->hasPropertyByName("FormatKey") )
{
sal_Int32 nFormatKey = 0;
- _rxField->getPropertyValue( OUString( "FormatKey" ) ) >>= nFormatKey;
+ _rxField->getPropertyValue("FormatKey") >>= nFormatKey;
if ( nFormatKey && m_xFormatter.is() )
{
Locale aFormatLocale;