Gnome FormTabularCreate

2001-05-07 Thread Michael A. Koziarski
Hey guys, The attached files makeup the GNOME tabular create Dialog. Could somone apply it for me please? As usual the .glade file goes in /lyx-devel/src/frontends/gnome/dialogs It seems to be working fine. Though I may have missed something. I'm also ALMOST complete with FormCharacter an

Re: Help on compiling lyx on solaris 8

2001-05-07 Thread Allan Rae
On Sat, 5 May 2001, Frank Naumann wrote: > So i type in make and get the following error > Making all in po > make[1]: Entering directory `/daten/installs/src/lyx-1.1.6fix1/po' > make[1]: *** No rule to make target `../lib/layouts/*.layout', > needed by `../src/ext_l10n.h'. Stop. Are you using S

Re: buggy patch

2001-05-07 Thread Baruch Even
I've tried to read through it, but it's long and contains a lot of style changes and string to stringstream changes, if you could commit the style changes and minor changes, it will be easier to read on the rest. * Lars Gullik Bjønnes <[EMAIL PROTECTED]> [010507 22:02]: > > Ok, this patch is bug

Re: buddy, can you spare a tarball?

2001-05-07 Thread Kayvan A. Sylvan
On Mon, May 07, 2001 at 03:46:05PM -0400, Richard E. Hawkins wrote: > > It looks like it isn't my fault this time :) As I'm reading the > archives, the cvs server really is down this time? > > Can anyone spare a tarball in the meantime? or is there some other plan > b? > > hawk > > > -- >

buddy, can you spare a tarball?

2001-05-07 Thread Richard E. Hawkins
It looks like it isn't my fault this time :) As I'm reading the archives, the cvs server really is down this time? Can anyone spare a tarball in the meantime? or is there some other plan b? hawk -- Prof. Richard E. Hawkins, Esq. /"\ ASCII ribbon campaign [EMAIL PROT

Re: double spaces at the end of a sentence: readability

2001-05-07 Thread Kayvan A. Sylvan
On Mon, May 07, 2001 at 07:14:42PM +0200, Lars Gullik Bjønnes wrote: > "Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes: > | This is just wrong. The first time through this part of the InsertChar function, > | sent_space_message is set to true (regardless of whether the space message > | is actually

Re: double spaces at the end of a sentence: readability

2001-05-07 Thread Lars Gullik Bjønnes
"Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes: | > | >static bool sent_space_message = false; | >if (!sent_space_message) | > if (cursor.pos() == 0) | > bview->owner()->message(...) | > else | > bview->owner()->message(...) | >sent_space_message = true |

buggy patch

2001-05-07 Thread Lars Gullik Bjønnes
Ok, this patch is buggy... when inserting tables it is a huge memory leak that eventyally leads to OOM. _but_ I'd like this patch to go in, but not before I am able to find out what is happening. so... if you have the time please have a look and see where I do the nasty things. (this patch star

Re: double spaces at the end of a sentence: readability

2001-05-07 Thread Kayvan A. Sylvan
> >static bool sent_space_message = false; >if (!sent_space_message) > if (cursor.pos() == 0) > bview->owner()->message(...) > else > bview->owner()->message(...) >sent_space_message = true > > (and the inner if can be repalced by '? :') This is just w

WorkArea width, height, xpos, ypos

2001-05-07 Thread Lars Gullik Bjønnes
* WorkArea.h (width, height, xpos, ypos): These methods all returned the dimensions of the work_area sub-area of WorkArea, resulting in a position error if the WorkArea were resized. Now return the dimensions of the entire WorkArea. this makes the initial screen b

Re: double spaces at the end of a sentence: readability

2001-05-07 Thread Lars Gullik Bjønnes
Dekel Tsur <[EMAIL PROTECTED]> writes: | On Mon, May 07, 2001 at 08:14:01AM -0700, Kayvan A. Sylvan wrote: | > + static bool sent_space_message = false; | > + if (cursor.pos() == 0) { | > + if (!sent_space_message) |bview->owner()->me

Re: double spaces at the end of a sentence: readability

2001-05-07 Thread Dekel Tsur
On Mon, May 07, 2001 at 08:14:01AM -0700, Kayvan A. Sylvan wrote: > + static bool sent_space_message = false; > + if (cursor.pos() == 0) { > + if (!sent_space_message) >bview->owner()->message(_("You cannot insert a space at the

Re: double spaces at the end of a sentence: readability

2001-05-07 Thread Kayvan A. Sylvan
On Mon, May 07, 2001 at 01:56:42PM +0200, Lars Gullik Bjønnes wrote: > Can't you move it here? Yes, I could. One more time... ;-) Index: src/ChangeLog === RCS file: /cvs/lyx/lyx-devel/src/ChangeLog,v retrieving revision 1.157 dif

Re: double spaces at the end of a sentence: readability

2001-05-07 Thread Lars Gullik Bjønnes
"Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes: | On Sat, May 05, 2001 at 01:50:20PM +1000, Allan Rae wrote: | > On Fri, 4 May 2001, Kayvan A. Sylvan wrote: | > | > > Here's the patch. | > | > Somebody correct me if I'm wrong but can't the static bool be placed | > at a minimal scope (just befor