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 f...@openoffice.org 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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


---------------------------------------------------------------------
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org

Reply via email to