diff options
author | Oliver Bolte <obo@openoffice.org> | 2007-01-25 10:58:37 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2007-01-25 10:58:37 +0000 |
commit | ba49d394b4b8d598a829f058b30104b2ab816d91 (patch) | |
tree | cfd3e22ea53ef8d6aeafa6489337fc98ed8a54ce /forms/source/runtime/formoperations.cxx | |
parent | 63624f238b725d66064f176a8ed726d75b75d60f (diff) |
INTEGRATION: CWS dba22c (1.3.8); FILE MERGED
2007/01/14 20:01:29 fs 1.3.8.1: #i73230#
Diffstat (limited to 'forms/source/runtime/formoperations.cxx')
-rw-r--r-- | forms/source/runtime/formoperations.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/forms/source/runtime/formoperations.cxx b/forms/source/runtime/formoperations.cxx index 481a0dc1c..f00597d25 100644 --- a/forms/source/runtime/formoperations.cxx +++ b/forms/source/runtime/formoperations.cxx @@ -4,9 +4,9 @@ * * $RCSfile: formoperations.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: vg $ $Date: 2007-01-15 13:47:47 $ + * last change: $Author: obo $ $Date: 2007-01-25 11:58:37 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -809,7 +809,7 @@ namespace frm DBG_ASSERT( m_nMethodNestingLevel, "FormOperations::impl_commitCurrentRecord_throw: to be called within a MethodGuard'ed section only!" ); if ( !impl_hasCursor_nothrow() ) - return sal_False; + return false; // nothing to do if the record is not modified sal_Bool bResult = !impl_isModifiedRow_throw(); @@ -1624,7 +1624,7 @@ namespace frm if ( !m_xController.is() || !impl_hasCursor_nothrow() || !impl_isParseable_throw() ) return; - if ( !impl_commitCurrentControl_throw() || impl_commitCurrentRecord_throw() ) + if ( !impl_commitCurrentControl_throw() || !impl_commitCurrentRecord_throw() ) return; try { |