diff options
Diffstat (limited to 'include/vcl/threadex.hxx')
-rw-r--r-- | include/vcl/threadex.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/vcl/threadex.hxx b/include/vcl/threadex.hxx index 88a4c7823d08..2ea99d4462e1 100644 --- a/include/vcl/threadex.hxx +++ b/include/vcl/threadex.hxx @@ -84,14 +84,14 @@ private: try { m_result.reset( m_func() ); } - catch (::com::sun::star::uno::Exception &) { + catch (css::uno::Exception &) { // only UNO exceptions can be dispatched: m_exc = ::cppu::getCaughtException(); } return 0; } - ::com::sun::star::uno::Any m_exc; + css::uno::Any m_exc; FuncT const m_func; // using boost::optional here omits the need that ResultT is default // constructable: @@ -120,14 +120,14 @@ private: try { m_func(); } - catch (::com::sun::star::uno::Exception &) { + catch (css::uno::Exception &) { // only UNO exceptions can be dispatched: m_exc = ::cppu::getCaughtException(); } return 0; } - ::com::sun::star::uno::Any m_exc; + css::uno::Any m_exc; FuncT const m_func; }; |