summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-07-23 21:17:53 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-07-23 22:06:41 -0400
commit9b2d4348e1659cebdf560626a3b6c00263c6b1f2 (patch)
treec28c65688fbf9bf5348dfe959199cffd27db95ee /sc
parent3a8f10ddb4bfbbf76590102bbcaa10c9aa2c0af3 (diff)
Unused parameter.
Change-Id: Ie76561a2c8e5d6a8613e948620503f42ad73a207
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/optdlg/calcoptionsdlg.cxx2
-rw-r--r--sc/source/ui/optdlg/calcoptionsdlg.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/optdlg/calcoptionsdlg.cxx b/sc/source/ui/optdlg/calcoptionsdlg.cxx
index 3b1f8da8cf41..69bd2a8c3332 100644
--- a/sc/source/ui/optdlg/calcoptionsdlg.cxx
+++ b/sc/source/ui/optdlg/calcoptionsdlg.cxx
@@ -312,7 +312,7 @@ IMPL_LINK(ScCalcOptionsDialog, SettingsSelHdl, Control*, pCtrl)
return 0;
}
-IMPL_LINK(ScCalcOptionsDialog, BtnToggleHdl, RadioButton*, pBtn)
+IMPL_LINK_NOARG(ScCalcOptionsDialog, BtnToggleHdl)
{
RadioValueChanged();
return 0;
diff --git a/sc/source/ui/optdlg/calcoptionsdlg.hxx b/sc/source/ui/optdlg/calcoptionsdlg.hxx
index 85a62db6a274..a1a722200df2 100644
--- a/sc/source/ui/optdlg/calcoptionsdlg.hxx
+++ b/sc/source/ui/optdlg/calcoptionsdlg.hxx
@@ -43,7 +43,7 @@ public:
virtual ~ScCalcOptionsDialog();
DECL_LINK( SettingsSelHdl, Control* );
- DECL_LINK( BtnToggleHdl, RadioButton* );
+ DECL_LINK( BtnToggleHdl, void* );
const ScCalcConfig& GetConfig() const;