I build OOo 680_m79 successfully. Writer run fine until I press arrow key. It'll die like this in MSVC++ debugger :-
'Unhandled exception at xxx in soffice.bin' 'exception: com::sun::star::uno::RuntimeException @ xxx'
svt680mi.dll!svt::AcceleratorExecute::impl_ts_asyncCallback(void* pVoid = xxx)
I debug-build svtools. Writer died here:-
IMPL_LINK(AcceleratorExecute, impl_ts_asyncCallback, void*, pVoid)
{
// SAFE -> ----------------------------------
::osl::ResettableMutexGuard aLock(m_aLock);
TCommandQueue::iterator pIt = m_lCommandQueue.begin();
if (pIt == m_lCommandQueue.end())
return 0;
css::util::URL aURL = pIt->first;
css::uno::Reference< css::frame::XDispatch > xDispatch = pIt->second;
m_lCommandQueue.erase(pIt);
aLock.clear(); // <- SAFE ----------------------------------
try
{
xDispatch->dispatch(aURL, css::uno::Sequence< css::beans::PropertyValue >());
}
catch(const css::uno::RuntimeException& exRuntime)
{ throw exRuntime; }
catch(const css::uno::Exception&)
----> { }
return 0;
}
Can anyone tell me what've I done wrong? Maybe something went wrong or failed in my build?
-- _/|\_ Samphan Raruenrom.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
