diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-14 11:28:15 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-09-15 09:37:31 +0200 |
commit | e0714ae393661da231466ee679d1a6f5cd49fe35 (patch) | |
tree | 910be73c75f74d4c62dc881361b1a5a211a34c61 /dbaccess | |
parent | 30350f72d8ce9d60ae6c47d602eff90f34bf71a9 (diff) |
convert Link<> to typed
Change-Id: I8f3e401afa27778678788b4ac90ea927a2fed1d7
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/misc/ToolBoxHelper.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/dbaccess/source/ui/misc/ToolBoxHelper.cxx b/dbaccess/source/ui/misc/ToolBoxHelper.cxx index 52f658e12aea..facfa7244e58 100644 --- a/dbaccess/source/ui/misc/ToolBoxHelper.cxx +++ b/dbaccess/source/ui/misc/ToolBoxHelper.cxx @@ -63,7 +63,7 @@ namespace dbaui } } - IMPL_LINK(OToolBoxHelper, ConfigOptionsChanged, SvtMiscOptions*, /*_pOptions*/) + IMPL_LINK_NOARG_TYPED(OToolBoxHelper, ConfigOptionsChanged, LinkParamNone*, void) { if ( m_pToolBox ) { @@ -73,8 +73,6 @@ namespace dbaui if ( aOptions.GetToolboxStyle() != m_pToolBox->GetOutStyle() ) m_pToolBox->SetOutStyle(aOptions.GetToolboxStyle()); } - - return 0L; } IMPL_LINK(OToolBoxHelper, SettingsChanged, VclWindowEvent*, _pEvt) { |