diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2012-07-20 21:31:30 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2012-07-24 13:51:10 +0200 |
commit | b12954531953fb8ad585847fe42677d714991ef1 (patch) | |
tree | 27a93059da4a0e36fb19af6545f46d0fd083be60 /desktop/inc/app.hxx | |
parent | 22d551b3f636c15468e9411b93872f7ab3aecdea (diff) |
tubes: init TeleManager in desktop
- register clients when we run --invisible
- create ScDocFuncSend only if we are going to use it
Change-Id: I7e33cd5a2e42e34a055146dc6c2bdac3657d6529
Diffstat (limited to 'desktop/inc/app.hxx')
-rw-r--r-- | desktop/inc/app.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/desktop/inc/app.hxx b/desktop/inc/app.hxx index 06dc4c76d027..09f0a4d4e4f1 100644 --- a/desktop/inc/app.hxx +++ b/desktop/inc/app.hxx @@ -41,6 +41,9 @@ #include <com/sun/star/task/XStatusIndicator.hpp> #include <com/sun/star/uno/Reference.h> #include <osl/mutex.hxx> +#ifdef ENABLE_TELEPATHY +#include <tubes/manager.hxx> +#endif using namespace com::sun::star::task; using namespace com::sun::star::uno; @@ -205,6 +208,9 @@ class Desktop : public Application sal_uInt16 m_nAppEvents; BootstrapError m_aBootstrapError; BootstrapStatus m_aBootstrapStatus; +#ifdef ENABLE_TELEPATHY + TeleManager* m_pTeleManager; +#endif std::auto_ptr< Lockfile > m_pLockfile; Timer m_firstRunTimer; |