diff options
author | David Tardon <dtardon@redhat.com> | 2011-05-27 12:03:12 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-06-23 06:11:02 +0200 |
commit | 15c80d4db0afca1bfa869d9853b004fe87f715d3 (patch) | |
tree | 6760e8d87e354223b621ebd77da3a00c29f0b8e3 /dbaccess | |
parent | eeae1dba8bc94dbea4beb64f9c6fc1a806616ff9 (diff) |
make this more readable
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/core/api/CRowSetDataColumn.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/core/api/CRowSetDataColumn.cxx b/dbaccess/source/core/api/CRowSetDataColumn.cxx index 2aa99a9ff767..79738dc6b7b5 100644 --- a/dbaccess/source/core/api/CRowSetDataColumn.cxx +++ b/dbaccess/source/core/api/CRowSetDataColumn.cxx @@ -203,7 +203,7 @@ Sequence< sal_Int8 > ORowSetDataColumn::getImplementationId() throw (RuntimeExce void ORowSetDataColumn::fireValueChange(const ORowSetValue& _rOldValue) { - if ( !m_aColumnValue.isNull() && m_aColumnValue->is() && (!(((*m_aColumnValue)->get())[m_nPos] == _rOldValue)) ) + if ( !m_aColumnValue.isNull() && m_aColumnValue->is() && (((*m_aColumnValue)->get())[m_nPos] != _rOldValue) ) { sal_Int32 nHandle = PROPERTY_ID_VALUE; m_aOldValue = _rOldValue.makeAny(); |