summaryrefslogtreecommitdiffstats
path: root/stoc/source/uriproc
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
parentstoc: remove using namespace from headers (diff)
downloadcore-e856f2323289efd3a6f070ff6e1b0f7cd3afb2aa.tar.gz
core-e856f2323289efd3a6f070ff6e1b0f7cd3afb2aa.zip
stoc: make use of css alias
Change-Id: I1dd85a7b1236cfebd5e653fe6d329968e556364b
Diffstat (limited to 'stoc/source/uriproc')
-rw-r--r--stoc/source/uriproc/ExternalUriReferenceTranslator.hxx8
-rw-r--r--stoc/source/uriproc/UriReference.hxx34
-rw-r--r--stoc/source/uriproc/UriReferenceFactory.cxx34
-rw-r--r--stoc/source/uriproc/UriReferenceFactory.hxx8
-rw-r--r--stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTscript.cxx34
-rw-r--r--stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTscript.hxx8
-rw-r--r--stoc/source/uriproc/VndSunStarPkgUrlReferenceFactory.hxx8
7 files changed, 67 insertions, 67 deletions
diff --git a/stoc/source/uriproc/ExternalUriReferenceTranslator.hxx b/stoc/source/uriproc/ExternalUriReferenceTranslator.hxx
index dff8e24cebee..13786c5cf879 100644
--- a/stoc/source/uriproc/ExternalUriReferenceTranslator.hxx
+++ b/stoc/source/uriproc/ExternalUriReferenceTranslator.hxx
@@ -34,15 +34,15 @@ namespace rtl { class OUString; }
namespace stoc { namespace uriproc {
namespace ExternalUriReferenceTranslator {
- com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL
+ css::uno::Reference< css::uno::XInterface > SAL_CALL
create(
- com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >
+ css::uno::Reference< css::uno::XComponentContext >
const & context)
- SAL_THROW((com::sun::star::uno::Exception));
+ SAL_THROW((css::uno::Exception));
OUString SAL_CALL getImplementationName();
- com::sun::star::uno::Sequence< OUString > SAL_CALL
+ css::uno::Sequence< OUString > SAL_CALL
getSupportedServiceNames();
}
diff --git a/stoc/source/uriproc/UriReference.hxx b/stoc/source/uriproc/UriReference.hxx
index b6306888ca69..178f1450f7ea 100644
--- a/stoc/source/uriproc/UriReference.hxx
+++ b/stoc/source/uriproc/UriReference.hxx
@@ -38,43 +38,43 @@ public:
~UriReference();
OUString getUriReference()
- throw (com::sun::star::uno::RuntimeException);
+ throw (css::uno::RuntimeException);
- bool isAbsolute() throw (com::sun::star::uno::RuntimeException);
+ bool isAbsolute() throw (css::uno::RuntimeException);
- OUString getScheme() throw (com::sun::star::uno::RuntimeException);
+ OUString getScheme() throw (css::uno::RuntimeException);
OUString getSchemeSpecificPart()
- throw (com::sun::star::uno::RuntimeException);
+ throw (css::uno::RuntimeException);
- bool isHierarchical() throw (com::sun::star::uno::RuntimeException);
+ bool isHierarchical() throw (css::uno::RuntimeException);
- bool hasAuthority() throw (com::sun::star::uno::RuntimeException);
+ bool hasAuthority() throw (css::uno::RuntimeException);
- OUString getAuthority() throw (com::sun::star::uno::RuntimeException);
+ OUString getAuthority() throw (css::uno::RuntimeException);
- OUString getPath() throw (com::sun::star::uno::RuntimeException);
+ OUString getPath() throw (css::uno::RuntimeException);
- bool hasRelativePath() throw (com::sun::star::uno::RuntimeException);
+ bool hasRelativePath() throw (css::uno::RuntimeException);
sal_Int32 getPathSegmentCount()
- throw (com::sun::star::uno::RuntimeException);
+ throw (css::uno::RuntimeException);
OUString getPathSegment(sal_Int32 index)
- throw (com::sun::star::uno::RuntimeException);
+ throw (css::uno::RuntimeException);
- bool hasQuery() throw (com::sun::star::uno::RuntimeException);
+ bool hasQuery() throw (css::uno::RuntimeException);
- OUString getQuery() throw (com::sun::star::uno::RuntimeException);
+ OUString getQuery() throw (css::uno::RuntimeException);
- bool hasFragment() throw (com::sun::star::uno::RuntimeException);
+ bool hasFragment() throw (css::uno::RuntimeException);
- OUString getFragment() throw (com::sun::star::uno::RuntimeException);
+ OUString getFragment() throw (css::uno::RuntimeException);
void setFragment(OUString const & fragment)
- throw (com::sun::star::uno::RuntimeException);
+ throw (css::uno::RuntimeException);
- void clearFragment() throw (com::sun::star::uno::RuntimeException);
+ void clearFragment() throw (css::uno::RuntimeException);
osl::Mutex m_mutex;
OUString m_scheme;
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:
diff --git a/stoc/source/uriproc/UriReferenceFactory.hxx b/stoc/source/uriproc/UriReferenceFactory.hxx
index cbbf2432a3dc..05d181907cea 100644
--- a/stoc/source/uriproc/UriReferenceFactory.hxx
+++ b/stoc/source/uriproc/UriReferenceFactory.hxx
@@ -34,15 +34,15 @@ namespace rtl { class OUString; }
namespace stoc { namespace uriproc {
namespace UriReferenceFactory {
- com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL
+ css::uno::Reference< css::uno::XInterface > SAL_CALL
create(
- com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >
+ css::uno::Reference< css::uno::XComponentContext >
const & context)
- SAL_THROW((com::sun::star::uno::Exception));
+ SAL_THROW((css::uno::Exception));
OUString SAL_CALL getImplementationName();
- com::sun::star::uno::Sequence< OUString > SAL_CALL
+ css::uno::Sequence< OUString > SAL_CALL
getSupportedServiceNames();
}
diff --git a/stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTscript.cxx b/stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTscript.cxx
index 77cfff77f6e0..66b0fe8bd6fa 100644
--- a/stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTscript.cxx
+++ b/stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTscript.cxx
@@ -201,71 +201,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(); }
virtual OUString SAL_CALL getName() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
diff --git a/stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTscript.hxx b/stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTscript.hxx
index 8393fc90c995..dee5ac9fe399 100644
--- a/stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTscript.hxx
+++ b/stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTscript.hxx
@@ -36,15 +36,15 @@ namespace rtl { class OUString; }
namespace stoc { namespace uriproc {
namespace UriSchemeParser_vndDOTsunDOTstarDOTscript {
- com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL
+ css::uno::Reference< css::uno::XInterface > SAL_CALL
create(
- com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >
+ css::uno::Reference< css::uno::XComponentContext >
const &)
- SAL_THROW((com::sun::star::uno::Exception));
+ SAL_THROW((css::uno::Exception));
OUString SAL_CALL getImplementationName();
- com::sun::star::uno::Sequence< OUString > SAL_CALL
+ css::uno::Sequence< OUString > SAL_CALL
getSupportedServiceNames();
}
diff --git a/stoc/source/uriproc/VndSunStarPkgUrlReferenceFactory.hxx b/stoc/source/uriproc/VndSunStarPkgUrlReferenceFactory.hxx
index 2d21127cb3b8..83dcdc31e75e 100644
--- a/stoc/source/uriproc/VndSunStarPkgUrlReferenceFactory.hxx
+++ b/stoc/source/uriproc/VndSunStarPkgUrlReferenceFactory.hxx
@@ -34,15 +34,15 @@ namespace rtl { class OUString; }
namespace stoc { namespace uriproc {
namespace VndSunStarPkgUrlReferenceFactory {
- com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL
+ css::uno::Reference< css::uno::XInterface > SAL_CALL
create(
- com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >
+ css::uno::Reference< css::uno::XComponentContext >
const & context)
- SAL_THROW((com::sun::star::uno::Exception));
+ SAL_THROW((css::uno::Exception));
OUString SAL_CALL getImplementationName();
- com::sun::star::uno::Sequence< OUString > SAL_CALL
+ css::uno::Sequence< OUString > SAL_CALL
getSupportedServiceNames();
}