diff options
author | Tobias Madl <tobias.madl.dev@gmail.com> | 2015-01-14 13:11:28 +0000 |
---|---|---|
committer | Tobias Madl <tobias.madl.dev@gmail.com> | 2015-03-06 12:27:06 +0000 |
commit | 57656eb1fae5ae6c4d3b7542a385a93ff434e4e7 (patch) | |
tree | 7dc672090c6236ef7bd5a2bf5278cd03b89e2ef8 /toolkit | |
parent | 49524c6dcf04b9dadef8d2b084cf26abcf70b8a9 (diff) |
Idle and Timer are now completely independent
And everything is functionating pretty well.
Change-Id: Id7f5a995362f6f7c5235f2e9facb7c7f119f3140
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/vclxtoolkit.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/toolkit/source/awt/vclxtoolkit.cxx b/toolkit/source/awt/vclxtoolkit.cxx index 389fa0d629a1..b720f96c7aab 100644 --- a/toolkit/source/awt/vclxtoolkit.cxx +++ b/toolkit/source/awt/vclxtoolkit.cxx @@ -91,6 +91,7 @@ #include <vcl/fixed.hxx> #include <vcl/floatwin.hxx> #include <vcl/group.hxx> +#include <vcl/idle.hxx> #include <vcl/imgctrl.hxx> #include <vcl/longcurr.hxx> #include <vcl/lstbox.hxx> @@ -1868,7 +1869,7 @@ void SAL_CALL VCLXToolkit::processEventsToIdle() throw (::com::sun::star::uno::RuntimeException, std::exception) { SolarMutexGuard aSolarGuard; - Timer::ProcessAllIdleHandlers(); + Idle::ProcessAllIdleHandlers(); } } |