summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-24 12:49:10 +0100
committerFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-24 12:49:10 +0100
commitf503a43f0e297468a322c88b6e26a4e42b5d86ca (patch)
treee914a94d52abcd466c9ce8466be86fd2f4b487cd /dbaccess
parent20d9c3c617e16ff2463807815dc9cb734bfc983e (diff)
dba34d: fixed unintentional no-op
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/core/api/query.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/core/api/query.cxx b/dbaccess/source/core/api/query.cxx
index 75c56c65e0e3..2d1c12ad3f25 100644
--- a/dbaccess/source/core/api/query.cxx
+++ b/dbaccess/source/core/api/query.cxx
@@ -361,7 +361,7 @@ void OQuery::setFastPropertyValue_NoBroadcast( sal_Int32 _nHandle, const Any& _r
{ // the base class holds the property values itself, but we have to forward this to our CommandDefinition
m_eDoingCurrently = SETTING_PROPERTIES;
- OAutoActionReset(this);
+ OAutoActionReset aActionResetter(this);
m_xCommandDefinition->setPropertyValue(sAggPropName, _rValue);
if ( PROPERTY_ID_COMMAND == _nHandle )