diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-23 10:32:47 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-23 12:05:04 +0200 |
commit | 1c909a13a0816e20d365000cc527d93e02633b0c (patch) | |
tree | 7a402659f9696c01ceeca51c5ddd2127b3b0e815 /include/unotest | |
parent | d29e614ff9cd91c4e4a1bada6a21884e33323f8d (diff) |
com::sun::star->css in include/ucbhelper to include/xmlscript
Change-Id: Iaa7f0b8455a601d3992c08cde0943c709c417256
Diffstat (limited to 'include/unotest')
-rw-r--r-- | include/unotest/bootstrapfixturebase.hxx | 10 | ||||
-rw-r--r-- | include/unotest/officeconnection.hxx | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/include/unotest/bootstrapfixturebase.hxx b/include/unotest/bootstrapfixturebase.hxx index f489e71c6398..a5e137c2d0c4 100644 --- a/include/unotest/bootstrapfixturebase.hxx +++ b/include/unotest/bootstrapfixturebase.hxx @@ -39,17 +39,17 @@ protected: OUString m_aWorkdirRootURL; OUString m_aWorkdirRootPath; - com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> m_xContext; - com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> m_xSFactory; - com::sun::star::uno::Reference<com::sun::star::lang::XMultiComponentFactory> m_xFactory; + css::uno::Reference<css::uno::XComponentContext> m_xContext; + css::uno::Reference<css::lang::XMultiServiceFactory> m_xSFactory; + css::uno::Reference<css::lang::XMultiComponentFactory> m_xFactory; public: BootstrapFixtureBase(); virtual ~BootstrapFixtureBase(); - com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> + css::uno::Reference<css::uno::XComponentContext> getComponentContext() { return m_xContext; } - com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> + css::uno::Reference<css::lang::XMultiServiceFactory> getMultiServiceFactory() { return m_xSFactory; } OUString getSrcRootURL() { return m_aSrcRootURL; } diff --git a/include/unotest/officeconnection.hxx b/include/unotest/officeconnection.hxx index 844c61bae55a..eb00d261a299 100644 --- a/include/unotest/officeconnection.hxx +++ b/include/unotest/officeconnection.hxx @@ -45,7 +45,7 @@ public: void tearDown(); - com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > + css::uno::Reference< css::uno::XComponentContext > getComponentContext() const { return context_;} // Must not be called before setUp or after tearDown: @@ -53,7 +53,7 @@ public: private: oslProcess process_; - com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > + css::uno::Reference< css::uno::XComponentContext > context_; }; |