[graphics-issues] [Issue 51969] Crash in Impress

2005-10-14 Thread wg
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969


User wg changed the following:

  What|Old value |New value

Status|VERIFIED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Fri Oct 14 06:48:24 -0700 
2005 ---
Tested in master m133. Closed.

-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-08-01 Thread af
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969


User af changed the following:

  What|Old value |New value

Status|RESOLVED  |REOPENED

Resolution|FIXED |





--- Additional comments from [EMAIL PROTECTED] Mon Aug  1 04:06:18 -0700 
2005 ---
Back to QA for verification.

re-open issue and reassign to [EMAIL PROTECTED]

-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-08-01 Thread af
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969


User af changed the following:

  What|Old value |New value

   Assigned to|af|wg

Status|REOPENED  |NEW





--- Additional comments from [EMAIL PROTECTED] Mon Aug  1 04:06:23 -0700 
2005 ---
reassign to [EMAIL PROTECTED]

-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-08-01 Thread af
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969


User af changed the following:

  What|Old value |New value

Status|NEW   |RESOLVED

Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Mon Aug  1 04:06:30 -0700 
2005 ---
reset resolution to FIXED

-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-08-01 Thread wg
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969


User wg changed the following:

  What|Old value |New value

Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Mon Aug  1 04:26:58 -0700 
2005 ---
Verified in CWS.

-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-07-27 Thread af
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969


User af changed the following:

  What|Old value |New value

Status|STARTED   |RESOLVED

Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Wed Jul 27 05:27:31 -0700 
2005 ---
Fixed.
Additionally to the fix for issue 48778 I made a small correction in
sd::View::EndTextEdit():
the active undo manager now is now restored before the edit mode is left.  This
eliminates the short time in which the deleted undo manager is still registered
as the active one.

Affected file:
/sd/source/ui/view/sdview.cxxrev. 1.41.60.1


-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-07-21 Thread af
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969





--- Additional comments from [EMAIL PROTECTED] Thu Jul 21 02:38:18 -0700 
2005 ---
I have been able to reproduce this crash.  Maybe there is more than one problem
involved, though.

The crash that I have observed is related to issue 48778.  The fix for this is
integrated in the m118 build.  What happens is this:
While the text edit mode is active the undo manager of the edit engine that
handles this text editing is used.  This is done by calling SetUndoManager() at
the top level view shell. When the text editing ends this undo manager is
destroyed together with the edit engine.  To handle this in
sd::View::EndTextEdit() the undo manager used by the top-level shell is replaced
by that of the document.

Unfortunately there is a place (ViewShellManager::Deactive()) where the
EndTextEdit() method of one of the base classes is called.  As one result the
undo manager of the top-level shell is not replaced and an access to the now
destroyed undo manager of the edit engine crashes the Office.  This is covered
and fixed by issue 48778.

There still is a minor problem in sd::View::EndTextEdit().  First the edit
engine is destroyed (by calling EndTextEdit() of the base class) and *after*
that the undo manager used by the top-level shell is replaced.  An access to the
undo manager in that short time span may still lead to a crash.  I will have to
fix this for this issue.

However, the stack trace shown above does not fit into this picture.  It may
indicated another error.

-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-07-20 Thread wg
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969


User wg changed the following:

  What|Old value |New value

   Assigned to|wg|af

  Target milestone|---   |OOo Later





--- Additional comments from [EMAIL PROTECTED] Wed Jul 20 01:02:47 -0700 
2005 ---
-AF: Can you have a look at the code if the crash is possible there? Thanks.

-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-07-20 Thread af
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969


User af changed the following:

  What|Old value |New value

Status|NEW   |STARTED





--- Additional comments from [EMAIL PROTECTED] Wed Jul 20 01:39:38 -0700 
2005 ---
This is a known issue, but one that no developer around here at Sun has yet been
able to reproduce.  It is covered by the (internal) bug #122402#.  

There exists a potential fix by MBA based on guesses based on the stack traces.
 This is part of child work space fwk18.

The observations stated above and the description of how to reproduce the crash
are very valuable.  I will try to reproduce this crash on my machine, just in
case that the fix mentioned above does not work.

-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-07-20 Thread kendy
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969





--- Additional comments from [EMAIL PROTECTED] Wed Jul 20 01:53:52 -0700 
2005 ---
I'll extract fwk18 and I'll try here as well.  Thank you! 

-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-07-20 Thread af
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969





--- Additional comments from [EMAIL PROTECTED] Wed Jul 20 02:11:43 -0700 
2005 ---
I tried to reproduce it on an m118 Windows XP build but without success. So it
would be really great if you, kendy, would try the (hopefully) fix.  You just
have to patch the file sfx2/source/control/dispatch.cxx to revision1.37.138.1.

-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-07-20 Thread kendy
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969





--- Additional comments from [EMAIL PROTECTED] Wed Jul 20 02:42:01 -0700 
2005 ---
Unfortunately, sfx2/source/control/dispatch.cxx, revision 1.37.138.1 did not 
help :-( 

-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-07-20 Thread af
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969


User af changed the following:

  What|Old value |New value

  Target milestone|OOo Later |OOo 2.0.1





--- Additional comments from [EMAIL PROTECTED] Wed Jul 20 05:10:26 -0700 
2005 ---
Thats bad news.

I will take a closer look at this bug.  Maybe your observations are the key to a
fix.

I set the target to OO 2.0.1

-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-07-20 Thread af
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969





--- Additional comments from [EMAIL PROTECTED] Wed Jul 20 05:30:34 -0700 
2005 ---
Issue 41306 is related to this one.  It fixes a problem with the undo manager.  

I just do not know whether that issue is just another symptom of an underlying
problem.

-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-07-19 Thread wg
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969





--- Additional comments from [EMAIL PROTECTED] Tue Jul 19 04:41:18 -0700 
2005 ---
Sorry, still  not reproducible. If pjanik does not use the offical build to
reproduce it does not help much. Which Linux do you use, any other infor for
reproducing?
Thanks.

-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-07-19 Thread jrahemipour
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969





--- Additional comments from [EMAIL PROTECTED] Tue Jul 19 07:05:37 -0700 
2005 ---
I can reproduce it with Sun official build m113, Win XP, german

The crash occurs only if I donĀ“t leave the title text box (stay in editing mode)
before I insert the next slide.

-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-07-19 Thread kendy
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969





--- Additional comments from [EMAIL PROTECTED] Tue Jul 19 10:01:03 -0700 
2005 ---
wg: I use SUSE 9.3, 32bit build on AMD64 machine. 
 
My suspection is that pUndoManager we get using ImpGetUndoManager() in 
ViewShell::GetMenuState( SfxItemSet rSet ) (file 
sd/source/ui/view/viewshe3.cxx) is already destructed for some reason, but not 
set to NULL; then the check for non-NULL succeeds, but results in a crash.  I 
have no idea about the 'sd' code, but I tried to add a destructor to class 
ActiveShellDescriptor (sd/source/ui/view/ObjectBarManager.cxx) that just sets 
mpShell to NULL; it did not help. 
 
As to the reproducibility: Sometimes I have to create 30-40 slides this way to 
see the crash.  I repeat the steps quite quickly. 
 
I'll attach a stderr output I get when compiled with debug=true; no idea 
whether it could help, but... ;-) 

-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-07-19 Thread kendy
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969


User kendy changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=28044) Log until the
  |  |crash.





--- Additional comments from [EMAIL PROTECTED] Tue Jul 19 10:10:07 -0700 
2005 ---
Created an attachment (id=28044)
Log until the crash.


-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-07-19 Thread kendy
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969





--- Additional comments from [EMAIL PROTECTED] Tue Jul 19 10:16:29 -0700 
2005 ---
but results in a crash: I meant but results in a crash later in 
if(pUndoManager-GetUndoActionCount() != 0) 

-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-07-15 Thread wg
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969


User wg changed the following:

  What|Old value |New value

  Keywords|  |needmoreinfo, oooqa





--- Additional comments from [EMAIL PROTECTED] Fri Jul 15 00:17:26 -0700 
2005 ---
Cannot reproduce this on an internal m116. AFAIK there is no official m116 or
m117 available, right?
@kendy: Which OS do you use (I assume Linux)? Thanks in advance.

-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-07-15 Thread kendy
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969





--- Additional comments from [EMAIL PROTECTED] Fri Jul 15 00:35:27 -0700 
2005 ---
wg: Linux, yes.  Sorry, I forgot to set OS; but as long as pjanik has 
reproduced it on Windows... ;) 
 
I have reproduced it also with the official m113 from www.openoffice.org. 

-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-07-14 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969





--- Additional comments from [EMAIL PROTECTED] Thu Jul 14 11:12:40 -0700 
2005 ---
kendy: I can't reproduce with my build of m117.


-
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]



[graphics-issues] [Issue 51969] Crash in Impress

2005-07-14 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51969


User pjanik changed the following:

  What|Old value |New value

OS/Version|Linux |All





--- Additional comments from [EMAIL PROTECTED] Thu Jul 14 12:23:32 -0700 
2005 ---
... but I reproduced with my Windows build of m117.


-
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]