summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/postgresql/pq_xcolumns.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-01 08:36:20 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-01 08:36:20 +0200
commit17e74bf1a0ca19bd7f555716408d318f5193e1bd (patch)
tree900b27ceff19e6204aebba4a729cf7dbc2cb719a /connectivity/source/drivers/postgresql/pq_xcolumns.cxx
parenta88a386c724d13f73c33768e9a78efd95f522a89 (diff)
Replace remaining getCppuType et al with cppu::UnoType
Change-Id: Id2361bd7b50f4724211661b024583b8a3445500b
Diffstat (limited to 'connectivity/source/drivers/postgresql/pq_xcolumns.cxx')
-rw-r--r--connectivity/source/drivers/postgresql/pq_xcolumns.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_xcolumns.cxx b/connectivity/source/drivers/postgresql/pq_xcolumns.cxx
index e1dd78a18d93..e11ed1a6c7c8 100644
--- a/connectivity/source/drivers/postgresql/pq_xcolumns.cxx
+++ b/connectivity/source/drivers/postgresql/pq_xcolumns.cxx
@@ -83,7 +83,7 @@ namespace pq_sdbc_driver
static Any isCurrency( const OUString & typeName )
{
sal_Bool b = typeName.equalsIgnoreAsciiCase("money");
- return Any( &b, getBooleanCppuType() );
+ return Any( &b, cppu::UnoType<bool>::get() );
}
// static sal_Bool isAutoIncrement8( const OUString & typeName )
@@ -108,7 +108,7 @@ static Any isAutoIncrement( const OUString & defaultValue )
// {
// b = b || typeName.equalsIgnoreAsciiCaseAscii( serials[i] );
// }
- return Any ( &ret, getBooleanCppuType() );
+ return Any ( &ret, cppu::UnoType<bool>::get() );
}
Columns::Columns(