summaryrefslogtreecommitdiff
path: root/include/vcl/scheduler.hxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-12-08 15:55:27 +0200
committerTor Lillqvist <tml@collabora.com>2015-12-08 15:57:36 +0200
commit0cdf09089d3c7a790a7c4b20f4cc115d038c75f1 (patch)
tree36487563a775cbb635f17bbdeda281060d19d266 /include/vcl/scheduler.hxx
parente1df21cfe0318bf287ae8ce29261d4759c49bd5a (diff)
Make ImplSVData private to vcl
Change-Id: I1df6ba8a269be3e165ff5948af1dd12e0bdc6f7d
Diffstat (limited to 'include/vcl/scheduler.hxx')
-rw-r--r--include/vcl/scheduler.hxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/vcl/scheduler.hxx b/include/vcl/scheduler.hxx
index 13d168727b78..8e75f33de155 100644
--- a/include/vcl/scheduler.hxx
+++ b/include/vcl/scheduler.hxx
@@ -23,7 +23,6 @@
#include <vcl/dllapi.h>
class Scheduler;
-struct ImplSVData;
struct ImplSchedulerData;
enum class SchedulerPriority {
@@ -39,9 +38,6 @@ enum class SchedulerPriority {
class VCL_DLLPUBLIC Scheduler
{
-private:
- static void InitSystemTimer(ImplSVData* pSVData);
-
protected:
ImplSchedulerData* mpSchedulerData; /// Pointer to element in scheduler list
const sal_Char *mpDebugName; /// Useful for debugging
@@ -50,7 +46,6 @@ protected:
// These should be constexpr static, when supported.
static const sal_uInt64 ImmediateTimeoutMs = 1;
- static const sal_uInt64 MaximumTimeoutMs = 1000 * 60; // 1 minute
static void ImplStartTimer(sal_uInt64 nMS, bool bForce = false);