Re: please don't change any documentation file until bug 5250 is fixed

2008-09-14 Thread Jürgen Spitzmüller
Uwe Stöhr wrote: > So please don't commit anything to documentation files until this is fixed. is fixed. Jürgen

Re: [Cvslog] r26396 - /lyx-devel/trunk/po/cs.po

2008-09-14 Thread Pavel Sanda
[EMAIL PROTECTED] wrote: > #: lib/layouts/linguistics.module:6 > msgid "" > "Defines some special environments useful for linguistics (numbered > examples, " > "glosses, semantic markup, tableau floats)." where are those tableau floats to be found in ui? pavel

Re: [patch] Solving selection painting bugs

2008-09-14 Thread Abdelrazak Younes
Vincent van Ravesteijn wrote: Abdelrazak Younes wrote: Yes, that sounds a better and cleaner solution. We basically only keep rows that are shown on screen in memory so adding two move variable is not a big problem. Abdel. Hi, I sort of cut the new code in four. It is no longer computed for

Re: [Cvslog] r26396 - /lyx-devel/trunk/po/cs.po

2008-09-14 Thread Jürgen Spitzmüller
Pavel Sanda wrote: > where are those tableau floats to be found in ui? Insert->Floats. Jürgen

RE: [patch] Solving selection painting bugs

2008-09-14 Thread Vincent van Ravesteijn - TNW
> I'll make this change and commit. > > Thanks, > Abdel. You might also consider Ed's comment about the naming in the Row class.. Maybe left_margin_sel and right_margin_sel are better names, but then the naming of the functions should also change.. Vincent

Re: [Cvslog] r26396 - /lyx-devel/trunk/po/cs.po

2008-09-14 Thread Pavel Sanda
Jürgen Spitzmüller wrote: > Pavel Sanda wrote: > > where are those tableau floats to be found in ui? > > Insert->Floats. nothing. do i need specific latex packages to be installed to see it? pavel

Re: [Cvslog] r26396 - /lyx-devel/trunk/po/cs.po

2008-09-14 Thread Jürgen Spitzmüller
Pavel Sanda wrote: > nothing. do i need specific latex packages to be installed to see it? Just float.sty (but you should have this). Are you sure you have the actual Linguistics.module loaded? Jürgen

Re: [patch] Solving selection painting bugs

2008-09-14 Thread Abdelrazak Younes
Vincent van Ravesteijn - TNW wrote: I'll make this change and commit. Thanks, Abdel. You might also consider Ed's comment about the naming in the Row class.. Maybe left_margin_sel and right_margin_sel are better names, but then the naming of the functions should also change.. I did

Re: [Cvslog] r26396 - /lyx-devel/trunk/po/cs.po

2008-09-14 Thread Pavel Sanda
Jürgen Spitzmüller wrote: > Pavel Sanda wrote: > > nothing. do i need specific latex packages to be installed to see it? > > Just float.sty (but you should have this). Are you sure you have the actual > Linguistics.module loaded? no the problem was i tried it with rc2 instead of trunk. i see it

RE: [patch] Solving selection painting bugs

2008-09-14 Thread Vincent van Ravesteijn - TNW
> About the new selection painting with your patch: I realize now that > we are back to 1.5 style. The goal in the previous painting was to be > able to differentiate betwen row break and new paragraph within a > selection. > The most important improvements are: - some real bugs are removed, -

Re: [patch] Solving selection painting bugs

2008-09-14 Thread Vincent van Ravesteijn
Abdelrazak Younes wrote: Please verify that I didn't overlooked something. Just some nitpicks in name of consistency... Vincent Index: src/Row.cpp === --- src/Row.cpp (revision 26401) +++ src/Row.cpp (working copy) @@ -65,11 +65,

Re: Move the outliner from Document to Tools?

2008-09-14 Thread Steve Litt
On Friday 12 September 2008 08:18:24 am Abdelrazak Younes wrote: > Hello there, > > The outline pane is obviously more than an outliner in 1.6. I am annoyed > by the fact that I have to first open a document before I can open the > pane. I propose to move the menu item from 'Document->Outline' to >

Re: Move the outliner from Document to Tools?

2008-09-14 Thread Abdelrazak Younes
Steve Litt wrote: On Friday 12 September 2008 08:18:24 am Abdelrazak Younes wrote: Hello there, The outline pane is obviously more than an outliner in 1.6. I am annoyed by the fact that I have to first open a document before I can open the pane. I propose to move the menu item from 'Documen

Re: Multi-author track changes

2008-09-14 Thread Andre Poenitz
On Sun, Sep 14, 2008 at 10:07:51PM +0200, Abdelrazak Younes wrote: > Vincent van Ravesteijn wrote: >> Jean-Marc Lasgouttes wrote: >>> >>> JMarc >>> >> >> Hi JMarc, >> >> I have processed your comments. I also removed als Change::UNCHANGED >> and friends from the code. I had to work with objects

Re: [patch] Solving selection painting bugs

2008-09-14 Thread Pavel Sanda
Vincent van Ravesteijn wrote: >> Please verify that I didn't overlooked something. >> > Just some nitpicks in name of consistency... its in. pavel

RE: Multi-author track changes

2008-09-14 Thread Vincent van Ravesteijn - TNW
>>> >>> Change & change_running = Change() ; >> >> change_running points to nothing valid. > > Hm... not really. > > The problem is that Change() is an rvalue that can't be bound > to an non-const reference (says the Standard, not MSVC...) > > If it were written > > Change const & change_runni