summaryrefslogtreecommitdiff
path: root/stoc/source/uriproc/UriReferenceFactory.cxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-05-22 08:45:37 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-05-22 12:50:47 +0200
commite856f2323289efd3a6f070ff6e1b0f7cd3afb2aa (patch)
treed5174713f9c1aca04833d06d7793aec2c0a5514f /stoc/source/uriproc/UriReferenceFactory.cxx
parentb2d99944c55acbdd4204db37079cde476d6388be (diff)
stoc: make use of css alias
Change-Id: I1dd85a7b1236cfebd5e653fe6d329968e556364b
Diffstat (limited to 'stoc/source/uriproc/UriReferenceFactory.cxx')
-rw-r--r--stoc/source/uriproc/UriReferenceFactory.cxx34
1 files changed, 17 insertions, 17 deletions
diff --git a/stoc/source/uriproc/UriReferenceFactory.cxx b/stoc/source/uriproc/UriReferenceFactory.cxx
index a3a7946e4592..0e174d433459 100644
--- a/stoc/source/uriproc/UriReferenceFactory.cxx
+++ b/stoc/source/uriproc/UriReferenceFactory.cxx
@@ -109,71 +109,71 @@ public:
{}
virtual OUString SAL_CALL getUriReference()
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return m_base.getUriReference(); }
virtual sal_Bool SAL_CALL isAbsolute()
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return m_base.isAbsolute(); }
virtual OUString SAL_CALL getScheme()
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return m_base.getScheme(); }
virtual OUString SAL_CALL getSchemeSpecificPart()
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return m_base.getSchemeSpecificPart(); }
virtual sal_Bool SAL_CALL isHierarchical()
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return m_base.isHierarchical(); }
virtual sal_Bool SAL_CALL hasAuthority()
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return m_base.hasAuthority(); }
virtual OUString SAL_CALL getAuthority()
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return m_base.getAuthority(); }
virtual OUString SAL_CALL getPath()
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return m_base.getPath(); }
virtual sal_Bool SAL_CALL hasRelativePath()
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return m_base.hasRelativePath(); }
virtual sal_Int32 SAL_CALL getPathSegmentCount()
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return m_base.getPathSegmentCount(); }
virtual OUString SAL_CALL getPathSegment(sal_Int32 index)
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return m_base.getPathSegment(index); }
virtual sal_Bool SAL_CALL hasQuery()
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return m_base.hasQuery(); }
virtual OUString SAL_CALL getQuery()
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return m_base.getQuery(); }
virtual sal_Bool SAL_CALL hasFragment()
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return m_base.hasFragment(); }
virtual OUString SAL_CALL getFragment()
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return m_base.getFragment(); }
virtual void SAL_CALL setFragment(OUString const & fragment)
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ m_base.setFragment(fragment); }
virtual void SAL_CALL clearFragment()
- throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ m_base.clearFragment(); }
private: