summaryrefslogtreecommitdiff
path: root/vcl/source/app/svapp.cxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2016-07-27 21:03:36 +0200
committerMichael Stahl <mstahl@redhat.com>2016-07-28 09:05:04 +0000
commit878c4f2490f0554cd0b261ff3699cb156e73b59e (patch)
tree706ad1b124d57ac3b70ba276524522d802e5bd6c /vcl/source/app/svapp.cxx
parent22c75d86db9351ab271942a755a2a75a76920943 (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 'vcl/source/app/svapp.cxx')
-rw-r--r--vcl/source/app/svapp.cxx20
1 files changed, 0 insertions, 20 deletions
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index 78c494d70405..bd6bccba70be 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -63,7 +63,6 @@
#include "displayconnectiondispatch.hxx"
#include "window.h"
#include "accmgr.hxx"
-#include "idlemgr.hxx"
#include "svids.hrc"
#include <com/sun/star/uno/Reference.h>
@@ -1094,25 +1093,6 @@ void Application::RemoveUserEvent( ImplSVEvent * nUserEvent )
}
}
-bool Application::InsertIdleHdl( const Link<Application*,void>& rLink, sal_uInt16 nPrio )
-{
- ImplSVData* pSVData = ImplGetSVData();
-
- // create if does not exist
- if ( !pSVData->maAppData.mpIdleMgr )
- pSVData->maAppData.mpIdleMgr = new ImplIdleMgr;
-
- return pSVData->maAppData.mpIdleMgr->InsertIdleHdl( rLink, nPrio );
-}
-
-void Application::RemoveIdleHdl( const Link<Application*,void>& rLink )
-{
- ImplSVData* pSVData = ImplGetSVData();
-
- if ( pSVData->maAppData.mpIdleMgr )
- pSVData->maAppData.mpIdleMgr->RemoveIdleHdl( rLink );
-}
-
WorkWindow* Application::GetAppWindow()
{
return ImplGetSVData()->maWinData.mpAppWin;