diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-05-05 22:43:11 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-05-06 08:20:55 +0200 |
commit | b515d1f36fdf8c242079da60eb4ecd5fd456583c (patch) | |
tree | f26dd6feb936ddec4799bed60d4966d46acff938 /chart2 | |
parent | f593be5bcde09965bb3478e00bcdedbc6bd5bc57 (diff) |
Use various typed ToolBox::Set*Hdl Links
Change-Id: Iddfd36ae0de86fdd2d4febb2c05d1fe0c02801f0
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/dialogs/dlg_DataEditor.cxx | 4 | ||||
-rw-r--r-- | chart2/source/controller/inc/dlg_DataEditor.hxx | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/chart2/source/controller/dialogs/dlg_DataEditor.cxx b/chart2/source/controller/dialogs/dlg_DataEditor.cxx index 4f4ce2f09230..683a4c907345 100644 --- a/chart2/source/controller/dialogs/dlg_DataEditor.cxx +++ b/chart2/source/controller/dialogs/dlg_DataEditor.cxx @@ -112,7 +112,7 @@ void DataEditor::dispose() } // react on click (or keypress) on toolbar icon -IMPL_LINK_NOARG(DataEditor, ToolboxHdl) +IMPL_LINK_NOARG_TYPED(DataEditor, ToolboxHdl, ToolBox *, void) { sal_uInt16 nId = m_pTbxData->GetCurItemId(); @@ -130,8 +130,6 @@ IMPL_LINK_NOARG(DataEditor, ToolboxHdl) m_xBrwData->SwapColumn(); else if (nId == TBI_DATA_SWAP_ROW) m_xBrwData->SwapRow(); - - return 0; } // refresh toolbar icons according to currently selected cell in brwose box diff --git a/chart2/source/controller/inc/dlg_DataEditor.hxx b/chart2/source/controller/inc/dlg_DataEditor.hxx index f37b16cfc956..a32c6d8a372a 100644 --- a/chart2/source/controller/inc/dlg_DataEditor.hxx +++ b/chart2/source/controller/inc/dlg_DataEditor.hxx @@ -74,7 +74,7 @@ private: m_xContext; /// handles actions of the toolbox - DECL_LINK( ToolboxHdl, void* ); + DECL_LINK_TYPED( ToolboxHdl, ToolBox*, void ); /// is called, if the cursor of the table has moved DECL_LINK( BrowserCursorMovedHdl, void*); /// this is called if MiscOptions change, esp. High-Contrast mode |