diff options
author | sb <sb@openoffice.org> | 2010-05-14 13:50:22 +0200 |
---|---|---|
committer | sb <sb@openoffice.org> | 2010-05-14 13:50:22 +0200 |
commit | 88d1e25d5c61d1d4ef12f0ac397db3c8b399564c (patch) | |
tree | 2d2b3c400eff3ba6eef398db04f5fcdba4ee33b0 /test/inc | |
parent | c170fae47342a76bc8b86dcfef750a707fac617b (diff) |
sb123: #i111598# OfficeConnection getFactory -> getComponentContext
Diffstat (limited to 'test/inc')
-rw-r--r-- | test/inc/test/officeconnection.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/inc/test/officeconnection.hxx b/test/inc/test/officeconnection.hxx index 99a319d51a7e..45c0a370d3c4 100644 --- a/test/inc/test/officeconnection.hxx +++ b/test/inc/test/officeconnection.hxx @@ -33,8 +33,8 @@ #include "osl/process.h" #include "test/detail/testdllapi.hxx" -namespace com { namespace sun { namespace star { namespace lang { - class XMultiServiceFactory; +namespace com { namespace sun { namespace star { namespace uno { + class XComponentContext; } } } } namespace test { @@ -51,13 +51,13 @@ public: void tearDown(); - com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory > - getFactory() const; + com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > + getComponentContext() const; private: oslProcess process_; - com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory > - factory_; + com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > + context_; }; } |