summaryrefslogtreecommitdiff
path: root/svtools/source/table/cellvalueconversion.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/table/cellvalueconversion.cxx')
-rw-r--r--svtools/source/table/cellvalueconversion.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/svtools/source/table/cellvalueconversion.cxx b/svtools/source/table/cellvalueconversion.cxx
index 14a7be2873ec..9b74cacfdc12 100644
--- a/svtools/source/table/cellvalueconversion.cxx
+++ b/svtools/source/table/cellvalueconversion.cxx
@@ -139,7 +139,7 @@ namespace svt
}
}
- virtual ::sal_Int32 getFormatKey() const
+ virtual ::sal_Int32 getFormatKey() const SAL_OVERRIDE
{
return m_nFormatKey;
}
@@ -159,7 +159,7 @@ namespace svt
{
}
- virtual double convertToDouble( Any const & i_value ) const
+ virtual double convertToDouble( Any const & i_value ) const SAL_OVERRIDE
{
double returnValue(0);
::rtl::math::setNan( &returnValue );
@@ -183,7 +183,7 @@ namespace svt
virtual ~IntegerNormalization() {}
- virtual double convertToDouble( Any const & i_value ) const
+ virtual double convertToDouble( Any const & i_value ) const SAL_OVERRIDE
{
sal_Int64 value( 0 );
OSL_VERIFY( i_value >>= value );
@@ -204,7 +204,7 @@ namespace svt
virtual ~BooleanNormalization() {}
- virtual double convertToDouble( Any const & i_value ) const
+ virtual double convertToDouble( Any const & i_value ) const SAL_OVERRIDE
{
bool value( false );
OSL_VERIFY( i_value >>= value );
@@ -225,7 +225,7 @@ namespace svt
virtual ~DateTimeNormalization() {}
- virtual double convertToDouble( Any const & i_value ) const
+ virtual double convertToDouble( Any const & i_value ) const SAL_OVERRIDE
{
double returnValue(0);
::rtl::math::setNan( &returnValue );
@@ -259,7 +259,7 @@ namespace svt
virtual ~DateNormalization() {}
- virtual double convertToDouble( Any const & i_value ) const
+ virtual double convertToDouble( Any const & i_value ) const SAL_OVERRIDE
{
double returnValue(0);
::rtl::math::setNan( &returnValue );
@@ -289,7 +289,7 @@ namespace svt
virtual ~TimeNormalization() {}
- virtual double convertToDouble( Any const & i_value ) const
+ virtual double convertToDouble( Any const & i_value ) const SAL_OVERRIDE
{
double returnValue(0);
::rtl::math::setNan( &returnValue );