INTEGRATION: CWS vcl81 (1.12.56); FILE MERGED

2007/07/19 16:35:43 pl 1.12.56.1: #148849# remove event listener or be called on a dead object
This commit is contained in:
Jens-Heiner Rechtien 2007-08-02 13:58:02 +00:00
parent e7f53f9824
commit 9b11e9cf0c

View file

@ -4,9 +4,9 @@
*
* $RCSfile: pdffilter.cxx,v $
*
* $Revision: 1.12 $
* $Revision: 1.13 $
*
* last change: $Author: ihi $ $Date: 2007-03-26 11:14:53 $
* last change: $Author: hr $ $Date: 2007-08-02 14:58:02 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@ -153,7 +153,10 @@ class FocusWindowWaitCursor
~FocusWindowWaitCursor()
{
if( m_pFocusWindow )
{
m_pFocusWindow->LeaveWait();
m_pFocusWindow->RemoveEventListener( LINK( this, FocusWindowWaitCursor, DestroyedLink ) );
}
}
DECL_LINK( DestroyedLink, VclWindowEvent* );