diff options
author | Cédric Bosdonnat <cedric.bosdonnat.ooo@free.fr> | 2011-05-11 17:31:00 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-05-12 11:56:57 +0200 |
commit | 63d6ea7efa4d6215b2458e9be4237d9cb9cc7bd9 (patch) | |
tree | f6481da0446c85e9f16a9edf284f1ebb00603f43 | |
parent | bb7fbd06a6999a3604f720a130d81651d73e5e80 (diff) |
fdo#36667: Fixed update of table formulas, missing extraction of pNewVal
Signed-off-by: Fridrich Štrba <fridrich.strba@bluewin.ch>
-rw-r--r-- | sw/source/core/table/swtable.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sw/source/core/table/swtable.cxx b/sw/source/core/table/swtable.cxx index 0c9e3ddb7a..39c856699b 100644 --- a/sw/source/core/table/swtable.cxx +++ b/sw/source/core/table/swtable.cxx @@ -2270,6 +2270,8 @@ void SwTableBoxFmt::Modify( const SfxPoolItem* pOld, const SfxPoolItem* pNew ) GetChgSet()->Get( RES_BOXATR_FORMAT )).GetValue(); rSet.GetItemState( RES_BOXATR_FORMULA, sal_False, (const SfxPoolItem**)&pNewFml ); + rSet.GetItemState( RES_BOXATR_VALUE, sal_False, + (const SfxPoolItem**)&pNewVal ); } break; |