To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51512
User fs changed the following:
What |Old value |New value
================================================================================
Status|NEW |RESOLVED
--------------------------------------------------------------------------------
Resolution| |INVALID
--------------------------------------------------------------------------------
------- Additional comments from [EMAIL PROTECTED] Tue Aug 23 08:23:38 -0700
2005 -------
Okay, after some debugging I decided that this is not a bug :)
What happens is:
- the RowSet is moved to the insertion row (moveToInsertRow)
- this triggers some "cursorMoved" listeners, amongst them, the Basic script. In
this script, a column value is modified, and this implicitly sets IsModified
to TRUE
(and rightfully so)
- The listener notification is only a *part* of the moveToInsertRow
implementation,
and not the last one. After the listeners (the Basic script have been
called), the
DataForm implementation (the RowSet in fact is a DataForm) does
an XReset::reset on itself, since its service requires that all columns are
reset
after having moved to the insertion row.
- During the Reset, the IsModified flag is set to FALSE, since this is part of
the ::reset requirement of its service specification.
So, everything is fine :). I updated the service specification to reflect the
interdependencies between moveToInsertRow, XReset::reset, and the IsModified
flag.
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]