diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-08-20 14:46:03 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-08-21 09:03:16 +0200 |
commit | 9d17726dcd629f3d588327dbfb0e35fc70ec262c (patch) | |
tree | 30df65f3327defb23386c319a46008307228dd3c /connectivity | |
parent | ab9e2ed4ca551768295ede7ab84d0b41f14cebc5 (diff) |
staruno -> css::uno
Change-Id: Ic82bbe5797d4f3c16096598cd566b917ee335a10
Diffstat (limited to 'connectivity')
-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; |