summaryrefslogtreecommitdiffstats
path: root/sc/source/ui/pagedlg/tptable.cxx
diff options
context:
space:
mode:
authorTomaž Vajngerl <quikee@gmail.com>2013-12-08 20:24:06 +0100
committerTomaž Vajngerl <quikee@gmail.com>2013-12-08 21:45:26 +0100
commitc85f1ed54f64bb7c7d309ec87df9ce8027a4a108 (patch)
tree3814d66c82a1c5682eb194395372a42a9fad04a1 /sc/source/ui/pagedlg/tptable.cxx
parentName the .pdb files so that WinDbg can consume them. (diff)
downloadcore-c85f1ed54f64bb7c7d309ec87df9ce8027a4a108.tar.gz
core-c85f1ed54f64bb7c7d309ec87df9ce8027a4a108.zip
Remove EmptyNumericField as it looks like it isn't used anymore.
Change-Id: I2619aea6543ec19c360b44d8d22e0d7ebca2b658
Diffstat (limited to 'sc/source/ui/pagedlg/tptable.cxx')
-rw-r--r--sc/source/ui/pagedlg/tptable.cxx24
1 files changed, 0 insertions, 24 deletions
diff --git a/sc/source/ui/pagedlg/tptable.cxx b/sc/source/ui/pagedlg/tptable.cxx
index 21efc163b51b..983c9136373b 100644
--- a/sc/source/ui/pagedlg/tptable.cxx
+++ b/sc/source/ui/pagedlg/tptable.cxx
@@ -33,30 +33,6 @@
#include "sc.hrc"
#include "pagedlg.hrc"
-// =======================================================================
-
-void EmptyNumericField::Modify()
-{
- if( !GetText().isEmpty() )
- NumericField::Modify();
- else
- SetEmptyFieldValue();
-}
-
-void EmptyNumericField::SetValue( sal_Int64 nValue )
-{
- if( nValue == 0 )
- SetEmptyFieldValue();
- else
- NumericField::SetValue( nValue );
-}
-
-sal_Int64 EmptyNumericField::GetValue() const
-{
- return IsEmptyFieldValue() ? 0 : NumericField::GetValue();
-}
-
-// =======================================================================
// STATIC DATA -----------------------------------------------------------