Re: Bug status

2007-04-02 Thread Abdelrazak Younes
Angus Leeming wrote: Abdelrazak Younes wrote: +bool GuiApplication::notify(QObject * receiver, QEvent * event) +{ + bool return_value; + try { + return_value = QApplication::notify(receiver, event); + } + catch (...) { + lyxerr << to_utf8(_("ERROR: Excepti

Re: Bug status

2007-04-01 Thread Angus Leeming
Abdelrazak Younes wrote: > +bool GuiApplication::notify(QObject * receiver, QEvent * event) > +{ > + bool return_value; > + try { > + return_value = QApplication::notify(receiver, event); > + } > + catch (...) { > + lyxerr << to_utf8(_("ERROR: Exception caugh

Re: Bug status

2007-04-01 Thread Abdelrazak Younes
Georg Baum wrote: Abdelrazak Younes wrote: 3288 event handler crash Don't know, don't seem to happen frequently (never seen it). Please read my comment. The particular reason for this crash was solved, but we must ensure that we don't throw an exception in the event handler. Otherwise this ha

Re: Bug status

2007-03-27 Thread Bernhard Roider
Peter Kümmel wrote: Andre Poenitz wrote: Can you figure out in what kind of inset the cursor sits at this point of time? I smell a macro with zero arguments... "macro with zero arguments" seems right: open attached cut-down userguide file, delete the \macro, open all insets and Crtl-z -> cra

Re: Bug status

2007-03-27 Thread Peter Kümmel
Andre Poenitz wrote: > > Can you figure out in what kind of inset the cursor sits at this point > of time? I smell a macro with zero arguments... "macro with zero arguments" seems right: open attached cut-down userguide file, delete the \macro, open all insets and Crtl-z -> crash. Peter cra

Re: Bug status

2007-03-27 Thread Bernhard Roider
Bernhard Roider wrote: Andre Poenitz wrote: ... Can you figure out in what kind of inset the cursor sits at this point of time? I smell a macro yes, it is. Its a \hookleftarrow in fact the crash happens when only one math inset with only this macro is placed in a file and open all insets

Re: Bug status

2007-03-27 Thread Bernhard Roider
Andre Poenitz wrote: ... Can you figure out in what kind of inset the cursor sits at this point of time? I smell a macro yes, it is. Its a \hookleftarrow

Re: Bug status

2007-03-27 Thread Andre Poenitz
On Tue, Mar 27, 2007 at 10:27:15PM +0200, Bernhard Roider wrote: > >>>This patch fixes the crash. If the currently entered macro consists of > >>>only a backslash when pressing backspace then this patch removes it > >>>silently without creating a change tracking entry. AFAICS this behavior > >>>

Re: Bug status

2007-03-27 Thread Andre Poenitz
On Tue, Mar 27, 2007 at 10:05:09PM +0200, Peter Kümmel wrote: > Andre Poenitz wrote: > > On Tue, Mar 27, 2007 at 05:01:48PM +0200, Abdelrazak Younes wrote: > >> Andre Poenitz wrote: > >>> On Tue, Mar 27, 2007 at 02:00:13PM +0200, Abdelrazak Younes wrote: > By the way, there's a new mathed and

Re: Bug status

2007-03-27 Thread Bernhard Roider
Andre Poenitz wrote: On Tue, Mar 27, 2007 at 01:51:45PM +0200, Abdelrazak Younes wrote: Bernhard Roider wrote: Andre Poenitz wrote: On Mon, Mar 26, 2007 at 05:55:13PM +0200, Abdelrazak Younes wrote: 3189 Backspace in Mathed results in crash I tried hard to fix that one but failed. Andre,

Re: Bug status

2007-03-27 Thread Peter Kümmel
Andre Poenitz wrote: > On Tue, Mar 27, 2007 at 05:01:48PM +0200, Abdelrazak Younes wrote: >> Andre Poenitz wrote: >>> On Tue, Mar 27, 2007 at 02:00:13PM +0200, Abdelrazak Younes wrote: By the way, there's a new mathed and undo related crash (which your patch does not fix): http

Re: Bug status

2007-03-27 Thread Andre Poenitz
On Tue, Mar 27, 2007 at 05:01:48PM +0200, Abdelrazak Younes wrote: > Andre Poenitz wrote: > >On Tue, Mar 27, 2007 at 02:00:13PM +0200, Abdelrazak Younes wrote: > >>By the way, there's a new mathed and undo related crash (which your > >>patch does not fix): > >> > >>http://bugzilla.lyx.org/show_bug

Re: Bug status

2007-03-27 Thread Andre Poenitz
On Tue, Mar 27, 2007 at 04:32:13PM +0200, Abdelrazak Younes wrote: > Andre Poenitz wrote: > >On Tue, Mar 27, 2007 at 02:00:13PM +0200, Abdelrazak Younes wrote: > >>One tiny comment: maybe you could use a boost::scoped_ptr instead of a > >>raw pointer for undo::pars? > > > >*shrug* I don't see the

Re: Bug status

2007-03-27 Thread Abdelrazak Younes
Andre Poenitz wrote: On Tue, Mar 27, 2007 at 02:00:13PM +0200, Abdelrazak Younes wrote: By the way, there's a new mathed and undo related crash (which your patch does not fix): http://bugzilla.lyx.org/show_bug.cgi?id=3358 I cannot reproduce this one. You tried with the UserGuide? Abdel.

Re: Bug status

2007-03-27 Thread Andre Poenitz
On Tue, Mar 27, 2007 at 02:00:13PM +0200, Abdelrazak Younes wrote: > By the way, there's a new mathed and undo related crash (which your > patch does not fix): > > http://bugzilla.lyx.org/show_bug.cgi?id=3358 I cannot reproduce this one. Andre'

Re: Bug status

2007-03-27 Thread Andre Poenitz
On Tue, Mar 27, 2007 at 01:51:45PM +0200, Abdelrazak Younes wrote: > Bernhard Roider wrote: > >Andre Poenitz wrote: > >>On Mon, Mar 26, 2007 at 05:55:13PM +0200, Abdelrazak Younes wrote: > >>>3189 Backspace in Mathed results in crash > >>> > >>>I tried hard to fix that one but failed. Andre, co

Re: Bug status

2007-03-27 Thread Abdelrazak Younes
Andre Poenitz wrote: On Tue, Mar 27, 2007 at 02:00:13PM +0200, Abdelrazak Younes wrote: One tiny comment: maybe you could use a boost::scoped_ptr instead of a raw pointer for undo::pars? *shrug* I don't see the benefit. I put ASSERTs all over the place to make sure we walk on the safe side.

Re: Bug status

2007-03-27 Thread Andre Poenitz
On Tue, Mar 27, 2007 at 02:00:13PM +0200, Abdelrazak Younes wrote: > One tiny comment: maybe you could use a boost::scoped_ptr instead of a > raw pointer for undo::pars? *shrug* I don't see the benefit. I put ASSERTs all over the place to make sure we walk on the safe side. If someone else wants

Re: Bug status

2007-03-27 Thread Abdelrazak Younes
Andre Poenitz wrote: On Mon, Mar 26, 2007 at 05:55:13PM +0200, Abdelrazak Younes wrote: 3189Backspace in Mathed results in crash I tried hard to fix that one but failed. Andre, could you please have a look? I don't get a crash but "wrong pos 1, max is 0 at level 2. Trying to correct t

Re: Bug status

2007-03-27 Thread Abdelrazak Younes
Bernhard Roider wrote: Andre Poenitz wrote: On Mon, Mar 26, 2007 at 05:55:13PM +0200, Abdelrazak Younes wrote: 3189 Backspace in Mathed results in crash I tried hard to fix that one but failed. Andre, could you please have a look? This patch fixes the crash. If the currently entered mac

Re: Bug status

2007-03-27 Thread Richard Heck
Abdelrazak Younes wrote: > Richard Heck wrote: >> Abdelrazak Younes wrote: >>> 3144 text style ignored in many cases Patch for 3144 attached. Richard -- == Richard G Heck, Jr Professor of Philosophy Brown University http://freg

Re: Bug status

2007-03-27 Thread Richard Heck
Abdelrazak Younes wrote: > Richard Heck wrote: >> Abdelrazak Younes wrote: >>> 3143 new paragraph doesn't reset text style Patch for 3143 attached. Richard -- == Richard G Heck, Jr Professor of Philosophy Brown University http

Re: Bug status

2007-03-27 Thread Abdelrazak Younes
Richard Heck wrote: Abdelrazak Younes wrote: 3143 new paragraph doesn't reset text style 3144 text style ignored in many cases I've sent patches to bugzilla that resolve these for me. They are really very simple in the end, but they'll need to be checked, especially the first one. H

Re: Bug status

2007-03-26 Thread Richard Heck
Abdelrazak Younes wrote: > 3143 new paragraph doesn't reset text style > 3144 text style ignored in many cases I've sent patches to bugzilla that resolve these for me. They are really very simple in the end, but they'll need to be checked, especially the first one. Richard --

Re: Bug status

2007-03-26 Thread Martin Vermeer
On Mon, Mar 26, 2007 at 10:26:36PM +0200, Michael Gerz wrote: > José Matos schrieb: > >On Monday 26 March 2007 6:43:58 pm Martin Vermeer wrote: > > > >>Fixed by attached. Trivial oversight by yours truly ;-/ > >> > > > > This seems the right fix, if you are confident please put it in. :-) >

Re: Bug status

2007-03-26 Thread Michael Gerz
José Matos schrieb: On Monday 26 March 2007 6:43:58 pm Martin Vermeer wrote: Fixed by attached. Trivial oversight by yours truly ;-/ This seems the right fix, if you are confident please put it in. :-) I already tested and committed it! Michael

Re: Bug status

2007-03-26 Thread José Matos
On Monday 26 March 2007 6:43:58 pm Martin Vermeer wrote: > Fixed by attached. Trivial oversight by yours truly ;-/ This seems the right fix, if you are confident please put it in. :-) > - Martin -- José Abílio

Re: Bug status

2007-03-26 Thread Bernhard Roider
Andre Poenitz wrote: On Mon, Mar 26, 2007 at 05:55:13PM +0200, Abdelrazak Younes wrote: 3189Backspace in Mathed results in crash I tried hard to fix that one but failed. Andre, could you please have a look? This patch fixes the crash. If the currently entered macro consists of only a bac

Re: Bug status

2007-03-26 Thread Michael Gerz
Abdelrazak Younes schrieb: 3160 Find&Replace fails in combination with change tracking Michael, care to give an explanation? Will be fixed within the next 1-2 weeks. Michael

Re: Bug status

2007-03-26 Thread Michael Gerz
Georg Baum schrieb: Abdelrazak Younes wrote: Dear all, I think we are very close to a 1.5.0 release, Not really. What really worries me is the fact that new bug reports arrive at a much higher rate than we are to fix them. A few weeks ago, we had about 500 open bugs. Now, there

Re: Bug status

2007-03-26 Thread Andre Poenitz
On Mon, Mar 26, 2007 at 05:55:13PM +0200, Abdelrazak Younes wrote: > 3189 Backspace in Mathed results in crash > > I tried hard to fix that one but failed. Andre, could you please have a > look? I don't get a crash but "wrong pos 1, max is 0 at level 2. Trying to correct this. correcting curs

Re: Bug status

2007-03-26 Thread Martin Vermeer
On Mon, Mar 26, 2007 at 05:55:13PM +0200, Abdelrazak Younes wrote: > Dear all, > > I think we are very close to a 1.5.0 release, here is the list of "more > than major" bugs for 1.5.0svn (12 bugs): > > http://tinyurl.com/2olf5y > 3252 Cursor is not placed correctly in char style inset > > D

Re: Bug status

2007-03-26 Thread Georg Baum
Abdelrazak Younes wrote: > Georg Baum wrote: >> Abdelrazak Younes wrote: >> >>> Dear all, >>> >>> I think we are very close to a 1.5.0 release, >> >> Not really. > > 1.5.0 doesn't have to be perfect WRT unicode. No, but as I stated several times I don't want any unciode related regression in 1

Re: Bug status

2007-03-26 Thread Abdelrazak Younes
Georg Baum wrote: Abdelrazak Younes wrote: Dear all, I think we are very close to a 1.5.0 release, Not really. 1.5.0 doesn't have to be perfect WRT unicode. I reckon that a 1.5.0 working fine for the latin world (and RTL language) is good enough for now. CJK and advanced input method can

Re: Bug status

2007-03-26 Thread Georg Baum
Abdelrazak Younes wrote: > Dear all, > > I think we are very close to a 1.5.0 release, Not really. > here is the list of "more > than major" bugs for 1.5.0svn (12 bugs): > > http://tinyurl.com/2olf5y > > and the list of "more than normal" bugs for 1.5.0svn (73 bugs): > > http://tinyurl.com