summaryrefslogtreecommitdiff
path: root/vcl/source/app/idlemgr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/app/idlemgr.cxx')
-rw-r--r--vcl/source/app/idlemgr.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/app/idlemgr.cxx b/vcl/source/app/idlemgr.cxx
index fbbd14159ec1..5fa5bef1c340 100644
--- a/vcl/source/app/idlemgr.cxx
+++ b/vcl/source/app/idlemgr.cxx
@@ -23,7 +23,7 @@
struct ImplIdleData
{
- Link maIdleHdl;
+ Link<> maIdleHdl;
sal_uInt16 mnPriority;
bool mbTimeout;
};
@@ -52,7 +52,7 @@ ImplIdleMgr::~ImplIdleMgr()
delete mpIdleList;
}
-bool ImplIdleMgr::InsertIdleHdl( const Link& rLink, sal_uInt16 nPriority )
+bool ImplIdleMgr::InsertIdleHdl( const Link<>& rLink, sal_uInt16 nPriority )
{
size_t nPos = (size_t)-1;
size_t n = mpIdleList->size();
@@ -86,7 +86,7 @@ bool ImplIdleMgr::InsertIdleHdl( const Link& rLink, sal_uInt16 nPriority )
return true;
}
-void ImplIdleMgr::RemoveIdleHdl( const Link& rLink )
+void ImplIdleMgr::RemoveIdleHdl( const Link<>& rLink )
{
if (mbInDestruction)
return;