summaryrefslogtreecommitdiff
path: root/svx/source/table/cell.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/table/cell.cxx')
-rw-r--r--svx/source/table/cell.cxx14
1 files changed, 14 insertions, 0 deletions
diff --git a/svx/source/table/cell.cxx b/svx/source/table/cell.cxx
index d0f8f1693af7..ea3a7e1343cd 100644
--- a/svx/source/table/cell.cxx
+++ b/svx/source/table/cell.cxx
@@ -929,6 +929,20 @@ void SAL_CALL Cell::setFormula( const OUString& aFormula ) throw (RuntimeExcepti
// -----------------------------------------------------------------------------
+void SAL_CALL Cell::setFormulaString( const OUString& aFormula ) throw (RuntimeException)
+{
+ setFormula( aFormula );
+}
+
+// -----------------------------------------------------------------------------
+
+void SAL_CALL Cell::setFormulaResult( const double nValue ) throw (RuntimeException)
+{
+ mfValue = nValue;
+}
+
+// -----------------------------------------------------------------------------
+
double SAL_CALL Cell::getValue( ) throw (RuntimeException)
{
return mfValue;