diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-05-03 20:57:42 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-05-04 17:54:51 +0200 |
commit | b95427196e87e7bc1143674ef7cb9b1eeacb7f72 (patch) | |
tree | f288318535f42f38eb9d19c11b0e160df97717ab /sd/source/ui/dlg/headerfooterdlg.cxx | |
parent | 468e60717ff3de76051b2e6568ef101a16ca8721 (diff) |
Use typed TabControl::SetDeactivatePageHdl Link
Change-Id: I487aad5217cb685ece971717445a68b4fb3d2b3a
Diffstat (limited to 'sd/source/ui/dlg/headerfooterdlg.cxx')
-rw-r--r-- | sd/source/ui/dlg/headerfooterdlg.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/dlg/headerfooterdlg.cxx b/sd/source/ui/dlg/headerfooterdlg.cxx index 1714443c4371..a21e27efcb3e 100644 --- a/sd/source/ui/dlg/headerfooterdlg.cxx +++ b/sd/source/ui/dlg/headerfooterdlg.cxx @@ -266,9 +266,9 @@ IMPL_LINK( HeaderFooterDialog, ActivatePageHdl, TabControl *, pTabCtrl ) return 0; } -IMPL_LINK_NOARG(HeaderFooterDialog, DeactivatePageHdl) +IMPL_LINK_NOARG_TYPED(HeaderFooterDialog, DeactivatePageHdl, TabControl *, bool) { - return sal_True; + return true; } IMPL_LINK_NOARG(HeaderFooterDialog, ClickApplyToAllHdl) |