Kaydet (Commit) 2149a2c3 authored tarafından Kurt Zenker's avatar Kurt Zenker

INTEGRATION: CWS jl100_DEV300 (1.24.8.2.6); FILE MERGED

2008/05/13 15:08:18 jl 1.24.8.2.6.1: #156271# The package::getMyBackend functions now throw a DisposedException
üst e58d0f6e
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite * OpenOffice.org - a multi-platform office productivity suite
* *
* $RCSfile: dp_gui_treelb.cxx,v $ * $RCSfile: dp_gui_treelb.cxx,v $
* $Revision: 1.28 $ * $Revision: 1.29 $
* *
* This file is part of OpenOffice.org. * This file is part of OpenOffice.org.
* *
...@@ -382,8 +382,16 @@ IMPL_LINK(NodeImpl, asyncModified, ModifiedParams*, pModifiedParams) ...@@ -382,8 +382,16 @@ IMPL_LINK(NodeImpl, asyncModified, ModifiedParams*, pModifiedParams)
{ {
t_set::iterator iFind( tlboxPackages.find( packages[ pos ] ) ); t_set::iterator iFind( tlboxPackages.find( packages[ pos ] ) );
if (iFind == iEnd) { if (iFind == iEnd) {
m_treelb->addPackageNode( try
m_lbEntry, packages[ pos ], xCmdEnv ); {
m_treelb->addPackageNode(
m_lbEntry, packages[ pos ], xCmdEnv );
}
catch (lang::DisposedException &)
{
//In case an extension was uninstalled or updated then
//the package may already be disposed
}
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment