summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-11-09 09:50:12 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-11-09 09:50:12 +0100
commit81e3f5f2fdc9c573c83a37009080e4bb974c7955 (patch)
tree24b4bcb39c2c2435d9d7dc49365cc5696ab66f1f /include
parent389999abdb2d35f8641a6ff2e8984887166d39e2 (diff)
Mark Scheduler as non-copyable
Change-Id: Iaabc92061a1a49720f473d35251d892dd4b4f756
Diffstat (limited to 'include')
-rw-r--r--include/vcl/scheduler.hxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/vcl/scheduler.hxx b/include/vcl/scheduler.hxx
index ef6949de1654..74fdb3a24f25 100644
--- a/include/vcl/scheduler.hxx
+++ b/include/vcl/scheduler.hxx
@@ -63,6 +63,9 @@ protected:
*/
virtual sal_uInt64 UpdateMinPeriod( sal_uInt64 nMinPeriod, sal_uInt64 nTimeNow ) const = 0;
+ Scheduler(Scheduler &) = delete;
+ void operator =(Scheduler &) = delete;
+
public:
Scheduler( const sal_Char *pDebugName );
Scheduler( const Scheduler& rScheduler );