summaryrefslogtreecommitdiff
path: root/sc/source/ui/optdlg/tpcalc.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/optdlg/tpcalc.cxx')
-rw-r--r--sc/source/ui/optdlg/tpcalc.cxx20
1 files changed, 0 insertions, 20 deletions
diff --git a/sc/source/ui/optdlg/tpcalc.cxx b/sc/source/ui/optdlg/tpcalc.cxx
index 55db49230b47..71401ed06741 100644
--- a/sc/source/ui/optdlg/tpcalc.cxx
+++ b/sc/source/ui/optdlg/tpcalc.cxx
@@ -19,8 +19,6 @@
#undef SC_DLLIMPLEMENTATION
-
-
#include "scitems.hxx"
#include <vcl/msgbox.hxx>
@@ -38,8 +36,6 @@
#include <math.h>
-
-
ScTpCalcOptions::ScTpCalcOptions(Window* pParent, const SfxItemSet& rCoreAttrs)
: SfxTabPage(pParent, "OptCalculatePage",
"modules/scalc/ui/optcalculatepage.ui", rCoreAttrs)
@@ -69,16 +65,12 @@ ScTpCalcOptions::ScTpCalcOptions(Window* pParent, const SfxItemSet& rCoreAttrs)
SetExchangeSupport();
}
-
-
ScTpCalcOptions::~ScTpCalcOptions()
{
delete pOldOptions;
delete pLocalOptions;
}
-
-
void ScTpCalcOptions::Init()
{
m_pBtnIterate->SetClickHdl( LINK( this, ScTpCalcOptions, CheckClickHdl ) );
@@ -88,15 +80,11 @@ void ScTpCalcOptions::Init()
m_pBtnDate1904->SetClickHdl( LINK( this, ScTpCalcOptions, RadioClickHdl ) );
}
-
-
SfxTabPage* ScTpCalcOptions::Create( Window* pParent, const SfxItemSet& rAttrSet )
{
return ( new ScTpCalcOptions( pParent, rAttrSet ) );
}
-
-
void ScTpCalcOptions::Reset( const SfxItemSet& /* rCoreAttrs */ )
{
sal_uInt16 d,m,y;
@@ -146,8 +134,6 @@ void ScTpCalcOptions::Reset( const SfxItemSet& /* rCoreAttrs */ )
}
-
-
bool ScTpCalcOptions::FillItemSet( SfxItemSet& rCoreAttrs )
{
// alle weiteren Optionen werden in den Handlern aktualisiert
@@ -173,8 +159,6 @@ bool ScTpCalcOptions::FillItemSet( SfxItemSet& rCoreAttrs )
return false;
}
-
-
int ScTpCalcOptions::DeactivatePage( SfxItemSet* pSetP )
{
int nReturn = KEEP_PAGE;
@@ -222,8 +206,6 @@ IMPL_LINK( ScTpCalcOptions, RadioClickHdl, RadioButton*, pBtn )
return 0;
}
-
-
IMPL_LINK( ScTpCalcOptions, CheckClickHdl, CheckBox*, pBtn )
{
if (pBtn == m_pBtnGeneralPrec)
@@ -259,6 +241,4 @@ IMPL_LINK( ScTpCalcOptions, CheckClickHdl, CheckBox*, pBtn )
}
-
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */