diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2015-11-26 11:15:11 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-11-26 13:48:21 +0000 |
commit | ed6aceab08e1c3951e1e33aa3d8070c57589b5db (patch) | |
tree | 9c2e2abc8cb129c0ed1040b536b6b11a6b87fd7d /sfx2 | |
parent | bc8dcb2b5db706c8c5bdd6cf3ac1311d6625d962 (diff) |
vcl: reduce pointless timer / scheduler / idle includes.
Change-Id: I8bf7f8d6ba1a54f2969e055956fadc52ff6c8673
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/inc/objshimp.hxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sfx2/source/inc/objshimp.hxx b/sfx2/source/inc/objshimp.hxx index b7dbb0c8bac2..36f8bdff6618 100644 --- a/sfx2/source/inc/objshimp.hxx +++ b/sfx2/source/inc/objshimp.hxx @@ -30,6 +30,7 @@ #include <sfx2/objsh.hxx> #include <sfx2/docmacromode.hxx> #include "bitset.hxx" +#include <vcl/timer.hxx> #include <appbaslib.hxx> @@ -45,6 +46,17 @@ struct MarkData_Impl class SfxBasicManagerHolder; +class AutoReloadTimer_Impl : public Timer +{ + OUString aUrl; + SfxObjectShell* pObjSh; + +public: + AutoReloadTimer_Impl( const OUString& rURL, sal_uInt32 nTime, + SfxObjectShell* pSh ); + virtual void Invoke() override; +}; + struct SfxObjectShell_Impl : public ::sfx2::IMacroDocumentAccess { ::comphelper::EmbeddedObjectContainer* mpObjectContainer; |