diff options
Diffstat (limited to 'connectivity/source/commontools/dbexception.cxx')
-rw-r--r-- | connectivity/source/commontools/dbexception.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/commontools/dbexception.cxx b/connectivity/source/commontools/dbexception.cxx index d8b71ee4f25a..6d43810f20a1 100644 --- a/connectivity/source/commontools/dbexception.cxx +++ b/connectivity/source/commontools/dbexception.cxx @@ -126,9 +126,9 @@ const SQLExceptionInfo& SQLExceptionInfo::operator=(const ::com::sun::star::uno: } -SQLExceptionInfo::SQLExceptionInfo(const staruno::Any& _rError) +SQLExceptionInfo::SQLExceptionInfo(const css::uno::Any& _rError) { - const staruno::Type& aSQLExceptionType = cppu::UnoType<com::sun::star::sdbc::SQLException>::get(); + const css::uno::Type& aSQLExceptionType = cppu::UnoType<com::sun::star::sdbc::SQLException>::get(); bool bValid = isAssignableFrom(aSQLExceptionType, _rError.getValueType()); if (bValid) m_aContent = _rError; |