summaryrefslogtreecommitdiff
path: root/stoc/source/implementationregistration
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/implementationregistration
parentb2d99944c55acbdd4204db37079cde476d6388be (diff)
stoc: make use of css alias
Change-Id: I1dd85a7b1236cfebd5e653fe6d329968e556364b
Diffstat (limited to 'stoc/source/implementationregistration')
-rw-r--r--stoc/source/implementationregistration/implreg.cxx18
-rw-r--r--stoc/source/implementationregistration/mergekeys.cxx2
-rw-r--r--stoc/source/implementationregistration/mergekeys.hxx10
3 files changed, 15 insertions, 15 deletions
diff --git a/stoc/source/implementationregistration/implreg.cxx b/stoc/source/implementationregistration/implreg.cxx
index 306fc72d04e5..8b8474470d91 100644
--- a/stoc/source/implementationregistration/implreg.cxx
+++ b/stoc/source/implementationregistration/implreg.cxx
@@ -55,11 +55,11 @@
using namespace com::sun::star;
-using namespace com::sun::star::uno;
-using namespace com::sun::star::loader;
-using namespace com::sun::star::beans;
-using namespace com::sun::star::lang;
-using namespace com::sun::star::registry;
+using namespace css::uno;
+using namespace css::loader;
+using namespace css::beans;
+using namespace css::lang;
+using namespace css::registry;
using namespace cppu;
using namespace osl;
@@ -1245,8 +1245,8 @@ public:
// XInitialization
virtual void SAL_CALL initialize(
- const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments )
- throw( ::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ const css::uno::Sequence< css::uno::Any >& aArguments )
+ throw( css::uno::Exception, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
private: // helper methods
void prepareRegister(
@@ -1342,8 +1342,8 @@ Reference< XSimpleRegistry > ImplementationRegistration::getRegistryFromServiceM
// XInitialization
void ImplementationRegistration::initialize(
- const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArgs )
- throw( ::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException, std::exception)
+ const css::uno::Sequence< css::uno::Any >& aArgs )
+ throw( css::uno::Exception, css::uno::RuntimeException, std::exception)
{
if( aArgs.getLength() != 4 ) {
diff --git a/stoc/source/implementationregistration/mergekeys.cxx b/stoc/source/implementationregistration/mergekeys.cxx
index 946722fc21ec..b2101b36e527 100644
--- a/stoc/source/implementationregistration/mergekeys.cxx
+++ b/stoc/source/implementationregistration/mergekeys.cxx
@@ -27,7 +27,7 @@
using namespace ::rtl;
using namespace ::osl;
-using namespace ::com::sun::star::uno;
+using namespace css::uno;
using namespace ::com::sun::star;
namespace stoc_impreg
diff --git a/stoc/source/implementationregistration/mergekeys.hxx b/stoc/source/implementationregistration/mergekeys.hxx
index 336b211d0a14..3bee9f2bc9d8 100644
--- a/stoc/source/implementationregistration/mergekeys.hxx
+++ b/stoc/source/implementationregistration/mergekeys.hxx
@@ -30,13 +30,13 @@ namespace com { namespace sun { namespace star { namespace registry {
namespace stoc_impreg {
-// throws ::com::sun::star::registry::InvalidRegistryException,
-// ::com::sun::star::registry::MergeConflictException,
-// ::com::sun::star::uno::RuntimeException:
+// throws css::registry::InvalidRegistryException,
+// css::registry::MergeConflictException,
+// css::uno::RuntimeException:
void mergeKeys(
- ::com::sun::star::uno::Reference< ::com::sun::star::registry::XRegistryKey >
+ css::uno::Reference< css::registry::XRegistryKey >
const & xDest,
- ::com::sun::star::uno::Reference< ::com::sun::star::registry::XRegistryKey >
+ css::uno::Reference< css::registry::XRegistryKey >
const & xSource);
}