summaryrefslogtreecommitdiff
path: root/include/vcl/svapp.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-15 15:05:45 +0200
committerNoel Grandin <noel@peralex.com>2015-09-16 08:38:55 +0200
commit5496f2a3ee8e76dda6d1c393308be1e9bbb90d6e (patch)
tree0058fd37fed2d687185c64d97551f7008fbf7d6d /include/vcl/svapp.hxx
parent3368bca3c29592af8190cfd8829d76ed768651b7 (diff)
convert Link<> to typed
Change-Id: I8275f9a100e5ed93f44596fe428a39e902c12dfc
Diffstat (limited to 'include/vcl/svapp.hxx')
-rw-r--r--include/vcl/svapp.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/svapp.hxx b/include/vcl/svapp.hxx
index 17210124ed8c..06079c67d322 100644
--- a/include/vcl/svapp.hxx
+++ b/include/vcl/svapp.hxx
@@ -872,13 +872,13 @@ public:
@return true if the handler was inserted successfully, false if it couldn't be inserted.
*/
- static bool InsertIdleHdl( const Link<>& rLink, sal_uInt16 nPriority );
+ 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<>& rLink );
+ static void RemoveIdleHdl( const Link<Application*,void>& rLink );
/*** Get the DisplayConnection.