summaryrefslogtreecommitdiff
path: root/dbaccess/source/core/dataaccess/ContentHelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/core/dataaccess/ContentHelper.cxx')
-rw-r--r--dbaccess/source/core/dataaccess/ContentHelper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/core/dataaccess/ContentHelper.cxx b/dbaccess/source/core/dataaccess/ContentHelper.cxx
index 59b1e886e7fd..88fa1275215f 100644
--- a/dbaccess/source/core/dataaccess/ContentHelper.cxx
+++ b/dbaccess/source/core/dataaccess/ContentHelper.cxx
@@ -362,14 +362,14 @@ Sequence< Any > OContentHelper::setPropertyValues(const Sequence< PropertyValue
if ( aNewValue != m_pImpl->m_aProps.aTitle )
{
aEvent.PropertyName = rValue.Name;
- aEvent.OldValue = makeAny( m_pImpl->m_aProps.aTitle );
+ aEvent.OldValue <<= m_pImpl->m_aProps.aTitle;
try
{
impl_rename_throw( aNewValue ,false);
OSL_ENSURE( m_pImpl->m_aProps.aTitle == aNewValue, "OContentHelper::setPropertyValues('Title'): rename did not work!" );
- aEvent.NewValue = makeAny( aNewValue );
+ aEvent.NewValue <<= aNewValue;
aChanges.getArray()[ nChanged ] = aEvent;
nChanged++;
}