[dba-issues] [Issue 93648] form control groups which are deleted from the document still appear in alive mode
To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=93648 User wg changed the following: What|Old value |New value Status|VERIFIED |CLOSED --- Additional comments from w...@openoffice.org Fri Feb 6 13:57:35 + 2009 --- Tested in DEV300_m41. Closed. - 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: issues-unsubscr...@dba.openoffice.org For additional commands, e-mail: issues-h...@dba.openoffice.org - To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org For additional commands, e-mail: allbugs-h...@openoffice.org
[dba-issues] [Issue 93648] form control groups which are deleted from the document still appear in alive mode
To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=93648 User fs changed the following: What|Old value |New value Status|RESOLVED |VERIFIED --- Additional comments from [EMAIL PROTECTED] Thu Nov 13 08:51:02 + 2008 --- looks good in CWS aw058, thanks. - 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]
[dba-issues] [Issue 93648] form control groups which are deleted from the document still appear in alive mode
To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=93648 User aw changed the following: What|Old value |New value Assigned to|aw|wg --- Additional comments from [EMAIL PROTECTED] Thu Nov 6 11:23:13 + 2008 --- AW->WG: Please review as described in the task. Maybe FS wants to check, too. - 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]
[dba-issues] [Issue 93648] form control groups which are deleted from the document still appear in alive mode
To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=93648 User aw changed the following: What|Old value |New value Status|STARTED |RESOLVED Resolution| |FIXED --- Additional comments from [EMAIL PROTECTED] Wed Oct 15 09:36:25 + 2008 --- AW: Committed, checked again. Works well, done. - 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]
[dba-issues] [Issue 93648] form control groups which are deleted from the document still appear in alive mode
To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=93648 --- Additional comments from [EMAIL PROTECTED] Fri Oct 10 18:30:14 + 2008 --- AW: Moved from FlushViewContact() at SdrObject, SdrPage and MasterPageObject to flushViewObjectContacts() at the ViewContact with a common imlementation to not flush the VC of a visualizable object, but the visualize-helpers, the VOCs themselves. Added a bool (bWithHierarchy) defaulting to true which will flush for the whole hierarchy starting from the VC called at. Adapted all FlushViewContact usages. Works well, grouped FormControls in live mode vanish now on delete an reoccurr accordingly (this may also fix some other related weaknesses). Works well, ready to commit. Will check further on monday. - 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]
[dba-issues] [Issue 93648] form control groups which are deleted from the document still appear in alive mode
To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=93648 --- Additional comments from [EMAIL PROTECTED] Wed Oct 8 16:56:03 + 2008 --- AW: Found. In earlier versions, the removal of a group used ViewContact::ActionRemoved() which deleted all VOCs not only from the object itself, but also from the complete draw hierarchy, including FormControls in this example. That leaded to ViewObjectContactOfUnoControl::~ViewObjectContactOfUnoControl() which disposed the control as VCL-Window accordingly. This no longer happens after aw033, only the VC (and thus the VOCs) of the SdrObject itself are removed using FlushViewContact(), but a hierarchy is no longer taken into account. This works with normal objects since the group object gets invalidated and the next repaint will use the new hierarchy anyways showing the correct refresh - despite the fact that VOCs for sub-objects still exist. This VOCs are no longer needed, but are not used. In fact, after doing UNDO, the same VOCs (and their decompositions) would be reused for display again. On the other hand - when the UNDO stack runs over and actually deletes the objects - the deletion of the VOCs would then invalidate non-visible objects in the OC they still know and think they are visualized in. Hmmm - 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]
[dba-issues] [Issue 93648] form control groups which are deleted from the document still appear in alive mode
To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=93648 User aw changed the following: What|Old value |New value Status|NEW |STARTED --- Additional comments from [EMAIL PROTECTED] Wed Oct 8 16:35:24 + 2008 --- AW: Played around and have seen that the group is removed and inserted from the page, there is indeed no mechanism which travels over contained controls and deletes them if they are VCL-Windows. There is a FmFormPage::RemoveObject() which uses a FmXUndoEnvironment::Removed(...) which travels over a evtl. contained hierarchy, but not with the purpose to delete VCL-Window visualisations of controls. I have NO idea who may have done that before aw033. It NEEDS to be some extra mechanism which reacts on group removal (insertion is not neede since here VCL-Window creation is handled from the repaint). Need to check a m29 for this... - 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]
[dba-issues] [Issue 93648] form control groups which are deleted from the document still appear in alive mode
To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=93648 User fs changed the following: What|Old value |New value Keywords| |regression Target milestone|--- |OOo 3.1 --- Additional comments from [EMAIL PROTECTED] Tue Sep 9 06:57:07 + 2008 --- regression between m29 and m30 => keyword, target - 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]
[dba-issues] [Issue 93648] form control groups which are deleted from the document still appear in alive mode
To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=93648 Issue #|93648 Summary|form control groups which are deleted from the documen |t still appear in alive mode Component|Database access Version|DEV300m30 Platform|All URL| OS/Version|All Status|NEW Status whiteboard| Keywords| Resolution| Issue type|DEFECT Priority|P3 Subcomponent|none Assigned to|aw Reported by|fs --- Additional comments from [EMAIL PROTECTED] Tue Sep 9 06:56:10 + 2008 --- - open a new text document - insert two arbitrary form controls (from the "Form Controls" toolbar) - group those two controls - delete the group - switch off the form control design mode => the controls re-appear - 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]