To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=67511


User tl changed the following:

                What    |Old value                 |New value
================================================================================
          Ever confirmed|                          |1
--------------------------------------------------------------------------------
                  Status|UNCONFIRMED               |NEW
--------------------------------------------------------------------------------




------- Additional comments from [EMAIL PROTECTED] Thu Oct  5 01:09:44 -0700 
2006 -------
Some things to take note of:
1) spellcheckers (usually) are one-instance services. That is when they get 
   created they live as long as the office (sometimes even longer!).
2) There can be cases where the d-tor does not get called. E.g. if in an
   external thread (e.g. by Java which has automatic garbage collection and
   thus may still keep references for some time) a reference to the 
   spellchecker is still is use while the office is shut down.
   (In that case later on a the d-tor might be called for an alrteady dead
   object.)
3) This may also be the case because of some progamming error. E.g. if the
   component would be created with new and thus by-passing the service 
   factory. This would result in the component being kept despite the
   reference count of the service factory going to 0.

In general (and especially including the above) relying on tje d-tor being
called to do to some required task is a bad choice anyway.
For these purpose the spellchecker implements the XComponent interface.
Any required clean-up, etc. should be done when dispose is called.

Because of this I must admit I did not check the issue by using your patch but
did only a quick check that 'dispose' gets called. This does happen.

Thus unless there is anything more serious involved I'll retarget this one to
'OOo later'.

---------------------------------------------------------------------
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]

Reply via email to