diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-15 08:33:41 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-09-15 09:37:32 +0200 |
commit | 98236528da98fda429671d8146e4f28c99b0c65a (patch) | |
tree | 20e3c2a143a37fb31a876cc970288196655fd7e0 /include/vcl | |
parent | 662084d5cb0256a1e2f4654b0dcf78930dfd38fc (diff) |
convert Link<> to typed
Change-Id: I5c4021c9cb3fdeace7f7d99d580dc7fe2f7c354a
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/syswin.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/syswin.hxx b/include/vcl/syswin.hxx index e2b388457f4c..78de8c97e30d 100644 --- a/include/vcl/syswin.hxx +++ b/include/vcl/syswin.hxx @@ -279,8 +279,8 @@ public: void SetApplicationID( const OUString &rApplicationID ); - void SetCloseHdl(const Link<>& rLink); - const Link<>& GetCloseHdl() const; + void SetCloseHdl(const Link<SystemWindow&,void>& rLink); + const Link<SystemWindow&,void>& GetCloseHdl() const; SAL_DLLPRIVATE bool hasPendingLayout() const { return maLayoutIdle.IsActive(); } |