diff options
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/propctrlr/propertyeditor.cxx | 3 | ||||
-rw-r--r-- | extensions/source/propctrlr/propertyeditor.hxx | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/extensions/source/propctrlr/propertyeditor.cxx b/extensions/source/propctrlr/propertyeditor.cxx index 60f72f4c980a..126ee9284956 100644 --- a/extensions/source/propctrlr/propertyeditor.cxx +++ b/extensions/source/propctrlr/propertyeditor.cxx @@ -509,11 +509,10 @@ namespace pcr } - IMPL_LINK_NOARG(OPropertyEditor, OnPageActivate) + IMPL_LINK_NOARG_TYPED(OPropertyEditor, OnPageActivate, TabControl*, void) { if (m_aPageActivationHandler.IsSet()) m_aPageActivationHandler.Call(NULL); - return 0L; } diff --git a/extensions/source/propctrlr/propertyeditor.hxx b/extensions/source/propctrlr/propertyeditor.hxx index e202095b47a9..7d457ce2855d 100644 --- a/extensions/source/propctrlr/propertyeditor.hxx +++ b/extensions/source/propctrlr/propertyeditor.hxx @@ -137,8 +137,8 @@ namespace pcr void setHelpLineLimits( OBrowserPage& _rPage, const void* ); protected: - DECL_LINK_TYPED(OnPageDeactivate, TabControl *, bool); - DECL_LINK(OnPageActivate, void *); + DECL_LINK_TYPED(OnPageDeactivate, TabControl*, bool); + DECL_LINK_TYPED(OnPageActivate, TabControl*, void); }; |