diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-07-27 21:03:36 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-07-28 09:05:04 +0000 |
commit | 878c4f2490f0554cd0b261ff3699cb156e73b59e (patch) | |
tree | 706ad1b124d57ac3b70ba276524522d802e5bd6c /include | |
parent | 22c75d86db9351ab271942a755a2a75a76920943 (diff) |
vcl: remove Application::InsertIdleHdl() and ImplIdleMgr
This is obsolete since 5.0 introduced the new Idle scheduler.
Change-Id: I8555fe35e2befb0cc2a4c39ae469a5c32a32fcb9
Reviewed-on: https://gerrit.libreoffice.org/27598
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/svapp.hxx | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/include/vcl/svapp.hxx b/include/vcl/svapp.hxx index f91d38afbe0c..9476fad9739c 100644 --- a/include/vcl/svapp.hxx +++ b/include/vcl/svapp.hxx @@ -791,24 +791,6 @@ public: */ static void RemoveUserEvent( ImplSVEvent * nUserEvent ); - /** Insert an idle handler into the application. - - If the idle event manager doesn't exist, then initialize it. - - @param rLink const reference to the idle handler - @param nPriority The priority of the idle handler - idle handlers of a higher - priority will be processed before this handler. - - @return true if the handler was inserted successfully, false if it couldn't be inserted. - */ - static bool InsertIdleHdl( const Link<Application*,void>& rLink, sal_uInt16 nPriority ); - - /** Remove an idle handler from the application. - - @param rLink const reference to the idle handler to remove - */ - static void RemoveIdleHdl( const Link<Application*,void>& rLink ); - /*** Get the DisplayConnection. It is a reference to XDisplayConnection, which allows toolkits to send display |