Re: cutSelection

2003-06-18 Thread Jean-Marc Lasgouttes
> "Juergen" == Juergen Spitzmueller <[EMAIL PROTECTED]> writes: Juergen> BTW: 1049 should be fixed now in 1.3 and 1.4, no? Yes, it is. JMarc

Re: cutSelection

2003-06-16 Thread Juergen Spitzmueller
Jean-Marc Lasgouttes wrote: > Yes, I did not forget it... I seem to remember that there were other > bugs like this one (C-Return comes to mind). bug 411? Others I am aware of: 702 (quotes), 672 (crossref), maybe bug 954 (pasting over selection). There are all a little bit less trivial. BTW: 104

Re: cutSelection

2003-06-16 Thread Jean-Marc Lasgouttes
> "Juergen" == Juergen Spitzmueller <[EMAIL PROTECTED]> writes: Juergen> Jean-Marc Lasgouttes wrote: >> I applied something similar to your patch (removing the bv args, >> and making sure that the realcut argument has a sane value). Juergen> Thanks, very kind of you. Juergen> BTW there is st

Re: cutSelection

2003-06-16 Thread Juergen Spitzmueller
Jean-Marc Lasgouttes wrote: > I applied something similar to your patch (removing the bv args, and > making sure that the realcut argument has a sane value). Thanks, very kind of you. BTW there is still one patch left from this area (for 1.3 and 1.4) http://bugzilla.lyx.org/show_bug.cgi?id=673 R

Re: cutSelection

2003-06-16 Thread Jean-Marc Lasgouttes
the realcut argument has a sane value). BTW, what is the real need for this realcut variable? Is there a reason why we have cur in CutAndPaste, where copy+delete would do the same? The deleteSelection code could be a stripped down version of cutSelection, and would be moved out of CutAndPaste... JMarc

Re: cutSelection

2003-06-13 Thread John Levon
On Fri, Jun 13, 2003 at 03:11:07PM +0200, Jean-Marc Lasgouttes wrote: > Juergen> well then here's a patch. It also sets bool realcut to false > Juergen> (i.e. do not touch the clipboard) for LFUN_DELETE. This is a > Juergen> bug Jean-Marc mentioned recently. > > Juergen> I have found two other in

Re: cutSelection

2003-06-13 Thread Jean-Marc Lasgouttes
> "Juergen" == Juergen Spitzmueller <[EMAIL PROTECTED]> writes: Juergen> John Levon wrote: >> it's wrong. Juergen> well then here's a patch. It also sets bool realcut to false Juergen> (i.e. do not touch the clipboard) for LFUN_DELETE. This is a Juergen> bug Jean-Marc mentioned recently. Jue

Re: cutSelection

2003-06-03 Thread Andre Poenitz
On Mon, Jun 02, 2003 at 08:33:51PM +0100, John Levon wrote: > On Mon, Jun 02, 2003 at 08:53:08PM +0200, Juergen Spitzmueller wrote: > > > has been changed to > > void cutSelection(bool doclear = true, bool realcut = true); > > (in lyxtext.h/text2.C). > >

Re: cutSelection

2003-06-03 Thread Juergen Spitzmueller
6/02 19:45:35 @@ -1,3 +1,7 @@ +2003-06-02 Juergen Spitzmueller <[EMAIL PROTECTED]> + + * text3.C: fix cutSelection call, don't use clipboard on delete. + 2003-06-02 John Levon <[EMAIL PROTECTED]> * LyXAction.C: Index: src/text3.C

Re: cutSelection

2003-06-03 Thread John Levon
On Mon, Jun 02, 2003 at 08:53:08PM +0200, Juergen Spitzmueller wrote: > has been changed to > void cutSelection(bool doclear = true, bool realcut = true); > (in lyxtext.h/text2.C). > > cutSelection(bv, true); > and similar. This strikes me wrong, or am I missing

cutSelection

2003-06-03 Thread Juergen Spitzmueller
Between 1.3 and 1.4, the function void cutSelection(BufferView *, bool doclear = true, bool realcut = true); has been changed to void cutSelection(bool doclear = true, bool realcut = true); (in lyxtext.h/text2.C). Nevertheless, in text3.C, there are still lots of