diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-11-30 12:13:41 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-11-30 12:13:57 +0100 |
commit | 4b5e98967f62607d3c6f75ea2490bac4787cc62b (patch) | |
tree | 05aead98ad05a2d3b57085f2619d5fa014cc5957 /desktop/inc/app.hxx | |
parent | 79080b68f3d367e1ef82155d221e221b2a96a4c8 (diff) |
Remove SvtStartOptions
...the single remaining user can use officecfg/Setup.hxx instead.
Change-Id: Icc1b56d820a9fcd7ecc52e279bcdde3aac4499d4
Diffstat (limited to 'desktop/inc/app.hxx')
-rw-r--r-- | desktop/inc/app.hxx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/desktop/inc/app.hxx b/desktop/inc/app.hxx index 0a4c071cb869..dfa74c4dfe0c 100644 --- a/desktop/inc/app.hxx +++ b/desktop/inc/app.hxx @@ -32,6 +32,10 @@ #include <com/sun/star/uno/Reference.h> #include <osl/mutex.hxx> +namespace com { namespace sun { namespace star { namespace uno { + class XComponentContext; +} } } } + using namespace com::sun::star::task; using namespace com::sun::star::uno; using namespace com::sun::star::lang; @@ -131,7 +135,9 @@ class Desktop : public Application // throws an exception upon failure private: - void RegisterServices(); + void RegisterServices( + com::sun::star::uno::Reference< + com::sun::star::uno::XComponentContext > const & context); void DeregisterServices(); void CreateTemporaryDirectory(); |