summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-12-18 09:06:27 +0100
committerStephan Bergmann <sbergman@redhat.com>2020-12-18 09:19:46 +0100
commit976ceae533becc3978e7c3741eadc69af4484437 (patch)
tree943fd94d863fca941610f094c6deb7d300c1d1ee /connectivity
parente987a050260ad4c8f6c3487e57bec1c8b680c65e (diff)
fix build
...after 177792660697f85763b39f455d7ebff0f83084fd "pgsql-sdbc: use libpq's custom free()..." Change-Id: I44f86470707eea850742130caf7ec243d850ad51 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107933 Tested-by: Stephan Bergmann <sbergman@redhat.com> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/postgresql/pq_connection.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_connection.cxx b/connectivity/source/drivers/postgresql/pq_connection.cxx
index e4716fe8855d..2bc1e4a42af8 100644
--- a/connectivity/source/drivers/postgresql/pq_connection.cxx
+++ b/connectivity/source/drivers/postgresql/pq_connection.cxx
@@ -444,7 +444,7 @@ void Connection::initialize( const Sequence< Any >& aArguments )
nColon = url.indexOf( ':' , 1+ nColon );
if( nColon != -1 )
{
- o = OUStringToOString( url.subView(nColon+1), ConnectionSettings::encoding );
+ o = rtl::OUStringToOString( url.subView(nColon+1), ConnectionSettings::encoding );
}
}
{