diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-01-22 20:53:47 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-01-25 12:20:04 +0100 |
commit | bd383c3f74a31366b139044ad21b48cc671e2213 (patch) | |
tree | 55dc75b672bb0eb7ff50bee73d607f106c50f102 /vcl/source | |
parent | 8ccd76c6ea8fa50f88c76c6c250cee76290a1f90 (diff) |
Dialog's ImplAsyncCloseHdl is IMPL_LINK_NOARG_TYPED
...so no need to pass it an actual argument
Change-Id: Idd349aec9a93bf9097f4a2f868d5e4cc9eb0aaed
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/window/dialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/dialog.cxx b/vcl/source/window/dialog.cxx index 1849b728ab42..d06ca8713885 100644 --- a/vcl/source/window/dialog.cxx +++ b/vcl/source/window/dialog.cxx @@ -649,7 +649,7 @@ bool Dialog::Notify( NotifyEvent& rNEvt ) // like e.g. SfxModelessDialog which destroy themselves inside Close() // post this Close asynchronous so we can leave our key handler before // we get destroyed - PostUserEvent( LINK( this, Dialog, ImplAsyncCloseHdl ), this, true); + PostUserEvent( LINK( this, Dialog, ImplAsyncCloseHdl ), nullptr, true); return true; } } |