INTEGRATION: CWS fwk16 (1.5.82); FILE MERGED
2005/07/07 11:20:30 as 1.5.82.1: #120310# close dispatcher detects disposed frames now and handle it more gracefully
This commit is contained in:
parent
d84645e97d
commit
9cc54e8593
1 changed files with 5 additions and 3 deletions
|
@ -2,9 +2,9 @@
|
|||
*
|
||||
* $RCSfile: framelistanalyzer.cxx,v $
|
||||
*
|
||||
* $Revision: 1.5 $
|
||||
* $Revision: 1.6 $
|
||||
*
|
||||
* last change: $Author: kz $ $Date: 2005-03-01 19:35:00 $
|
||||
* last change: $Author: kz $ $Date: 2005-07-12 14:13:53 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* either of the following licenses
|
||||
|
@ -194,7 +194,9 @@ void FrameListAnalyzer::impl_analyze()
|
|||
css::uno::Reference< css::frame::XModel > xReferenceModel;
|
||||
if ((m_eDetectMode & E_MODEL) == E_MODEL )
|
||||
{
|
||||
css::uno::Reference< css::frame::XController > xReferenceController = m_xReferenceFrame->getController();
|
||||
css::uno::Reference< css::frame::XController > xReferenceController;
|
||||
if (m_xReferenceFrame.is())
|
||||
xReferenceController = m_xReferenceFrame->getController();
|
||||
if (xReferenceController.is())
|
||||
xReferenceModel = xReferenceController->getModel();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue