To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=102926
User flr changed the following:
What |Old value |New value
================================================================================
CC|'' |'flr'
--------------------------------------------------------------------------------
------- Additional comments from [email protected] Tue Jun 30 12:02:20 +0000
2009 -------
flr->cd: I guess the problem is that the m_nRequestCount value in
desktop/source/app/dispatchwatcher.cxx get to "-1". My fix would be:
DispatchWatcher::DispatchWatcher()
- : m_nRequestCount(1)
+ : m_nRequestCount(0)
and
+ m_nRequestCount++;
+
for ( p = aDispatchRequestsList.begin(); p != aDispatchRequestsList.end();
p++ )
and
osl::ClearableMutexGuard aGuard( GetMutex() );
- sal_Int16 nCount = --m_nRequestCount;
+ sal_Int16 nCount = m_nRequestCount;
I fixed this issue in
http://cgit.freedesktop.org/ooo-build/ooo-build/tree/patches/dev300/desktop-cmd-bulk-conversion.diff
while adding the "-bulk" command line option.
---------------------------------------------------------------------
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]