diff options
author | Muthu Subramanian <sumuthu@novell.com> | 2011-06-23 17:10:30 +0530 |
---|---|---|
committer | Muthu Subramanian <sumuthu@novell.com> | 2011-06-23 17:10:30 +0530 |
commit | 29387b95a21725ac9a216a18674d0e39917e3481 (patch) | |
tree | eb7494442b6c9783e3b40767cdc4b9e436fae69d /svx/source | |
parent | 772558d87f4b32aecc530664ffd26aeeb4593067 (diff) |
Code review (bug fix).
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/table/cell.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/table/cell.cxx b/svx/source/table/cell.cxx index 4d26e69e2396..d0f8f1693af7 100644 --- a/svx/source/table/cell.cxx +++ b/svx/source/table/cell.cxx @@ -938,7 +938,7 @@ double SAL_CALL Cell::getValue( ) throw (RuntimeException) void SAL_CALL Cell::setValue( double nValue ) throw (RuntimeException) { - if( mfValue == nValue ) + if( mfValue != nValue ) { mfValue = nValue; mnCellContentType = CellContentType_VALUE; |