summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/postgresql/pq_array.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/postgresql/pq_array.cxx')
-rw-r--r--connectivity/source/drivers/postgresql/pq_array.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_array.cxx b/connectivity/source/drivers/postgresql/pq_array.cxx
index ca0d0ae50861..4f69d158c9cf 100644
--- a/connectivity/source/drivers/postgresql/pq_array.cxx
+++ b/connectivity/source/drivers/postgresql/pq_array.cxx
@@ -116,11 +116,11 @@ void Array::checkRange( sal_Int32 index, sal_Int32 count )
if( index >= 1 && index -1 + count <= m_data.getLength() )
return;
OUStringBuffer buf;
- buf.appendAscii( RTL_CONSTASCII_STRINGPARAM( "Array::getArrayAtIndex(): allowed range for index + count " ) );
+ buf.append( "Array::getArrayAtIndex(): allowed range for index + count " );
buf.append( m_data.getLength() );
- buf.appendAscii( ", got " );
+ buf.append( ", got " );
buf.append( index );
- buf.appendAscii( " + " );
+ buf.append( " + " );
buf.append( count );
throw SQLException( buf.makeStringAndClear() , *this, OUString(), 1, Any());