Re: tabular and eps problem

2001-03-22 Thread Lars Gullik Bjønnes
Eildert Groeneveld <[EMAIL PROTECTED]> writes: | Hello everyone, | | the current cvs produces this problem with table and figure floats: | | ! LaTeX Error: Illegal character in array arg. | | See the LaTeX manual or LaTeX Companion for explanation. | Type H for immediate help. | ... | |

tabular and eps problem

2001-03-22 Thread Eildert Groeneveld
Hello everyone, the current cvs produces this problem with table and figure floats: ! LaTeX Error: Illegal character in array arg. See the LaTeX manual or LaTeX Companion for explanation. Type H for immediate help. ... l.112 \begin{tabular}{|c|m{40mm}|m{60mm}|c|} includegraphics does n

Re: Compilation error

2001-03-22 Thread Jose Abilio Oliveira Matos
On Thu, Mar 22, 2001 at 09:38:19PM +0100, Lars Gullik Bjønnes wrote: > move enum PAR_TAG out of the method into an anon namespace and therein > add also a operator|=, like this: There is still hope, this was the first thing I have done. > namespace { > > enum PAR_TAG { > NONE = 0, >

Re: [PATCH] os class for OS/2 & Win32 support

2001-03-22 Thread Jose Abilio Oliveira Matos
On Fri, Mar 23, 2001 at 09:15:01AM +0900, Miyata Shigeru wrote: > I wrote: > > > Since I cannot compile LyX any more here, I would like Windows developers > > to submit the final patch. > > Thanks to a help from Ilya Zakharevich, I modified syscall() of EMX and > I can compile LyX again on OS/2.

Quick-and-dirty fix to make qt2 compile and my other files

2001-03-22 Thread Kalle Dalheimer
Hi, I have just committed a quick-and-dirty fix to make the Qt2 frontend compile again - I commented out the credits dialog. We cannot reuse that from XForms any longer. I'll port it as soon as I get around to doing it. I also committed my old files. They are not compiled in yet but hopefully

Re: minipages & new insets

2001-03-22 Thread Garst R. Reese
Juergen Vigna wrote: > I'll fix this now (or try to) then please Garst have a look with your > files and tell me if there are still differences in the produced code! > > Jürgen I'll be happy to as soon as I can get it to compile. gcc-3.0 log attached. Garst Making all in controllers mak

Re: [PATCH] os class for OS/2 & Win32 support

2001-03-22 Thread Miyata Shigeru
I wrote: > Since I cannot compile LyX any more here, I would like Windows developers > to submit the final patch. Thanks to a help from Ilya Zakharevich, I modified syscall() of EMX and I can compile LyX again on OS/2. Well, almost. In buffer.C, is included before "LString.h", which breaks the

Re: Compilation error

2001-03-22 Thread Lars Gullik Bjønnes
Jose Abilio Oliveira Matos <[EMAIL PROTECTED]> writes: | On Thu, Mar 22, 2001 at 01:05:16PM +0100, Lars Gullik Bjønnes wrote: | > | > enum PAR_TAG { | > NONE = 0 | > TT = 1, | > SF = 2, | > BF = 4, | > IT = 8, | > SL = 16, | > EM = 32 | > }; | > | > | > And

Re: Compilation error

2001-03-22 Thread Jose Abilio Oliveira Matos
On Thu, Mar 22, 2001 at 01:05:16PM +0100, Lars Gullik Bjønnes wrote: > > enum PAR_TAG { > NONE = 0 > TT = 1, > SF = 2, > BF = 4, > IT = 8, > SL = 16, > EM = 32 > }; > > > And instead of bitset tag_close; > > PAR_TAG tag_close = 0; > > Instead of t

minipages - placement

2001-03-22 Thread Lars Gullik Bjønnes
The following file shows what we want to do. You have to view it with latest CVS, to get the idea. Minipage.lyx -- Lgb

Re: Compilation error

2001-03-22 Thread Lars Gullik Bjønnes
Jose Abilio Oliveira Matos <[EMAIL PROTECTED]> writes: | > working with bit representations. And by using it you get no type | > checking on the enum type. | | The the "C++ Programming Language" refers bitset to other uses, such as | having parameters with boolean flags, not only for bit opera

Re: Compilation error

2001-03-22 Thread Jose Abilio Oliveira Matos
On Thu, Mar 22, 2001 at 07:10:13PM +0100, Lars Gullik Bjønnes wrote: > | Notice that the code with bitsets is more clear than this version. > | Notice the following line: > | char const * tag_name[] = {"tt","sf","bf","it","sl","em"}; > > And I dislike this one too. > > You can solve this o

Re: Compilation error

2001-03-22 Thread Lars Gullik Bjønnes
Jose Abilio Oliveira Matos <[EMAIL PROTECTED]> writes: | On Thu, Mar 22, 2001 at 01:05:16PM +0100, Lars Gullik Bjønnes wrote: | > Dekel Tsur <[EMAIL PROTECTED]> writes: | > | > | g++ -DHAVE_CONFIG_H -I. -I. -I. -I.. -I.. -I../boost-isystem | > | /usr/X11R6/include -O -fno-rtti -fno-exceptio

Re: Compilation error

2001-03-22 Thread Jose Abilio Oliveira Matos
On Thu, Mar 22, 2001 at 01:05:16PM +0100, Lars Gullik Bjønnes wrote: > Dekel Tsur <[EMAIL PROTECTED]> writes: > > | g++ -DHAVE_CONFIG_H -I. -I. -I. -I.. -I.. -I../boost-isystem > | /usr/X11R6/include -O -fno-rtti -fno-exceptions -W -Wall -c buffer.C > | buffer.C:21: bitset: No such file or d

Re: Compilation error

2001-03-22 Thread Lars Gullik Bjønnes
[EMAIL PROTECTED] (Lars Gullik Bjønnes) writes: | I am not sure how safe those template operators are. This is the last version, I am a bit unsure about the odr implications of the friends in EnumSet. template class EnumSet { public: EnumSet() : e_(E(0)) {} EnumSet(E val) : e_(

Re: gnome frontend cvs access

2001-03-22 Thread Baruch Even
* Lars Gullik Bjønnes <[EMAIL PROTECTED]> [010322 18:32]: > Baruch Even <[EMAIL PROTECTED]> writes: > > | I'm pretty much stuck with the asynchronous image loading and the image > | resize. > > Anything I can help with? The current status is that images are loaded synchronously, that is when yo

Re: Compilation error

2001-03-22 Thread Lars Gullik Bjønnes
Andre Poenitz <[EMAIL PROTECTED]> writes: | > I am not sure how safe those template operators are. | | Oh... pretty safe. You can now safely perform | and & on doubles as | well ;-} mmm... those operators should have some concept checking boost::is_enum comes to mind... Lgb

Re: Compilation error

2001-03-22 Thread Andre Poenitz
> I am not sure how safe those template operators are. Oh... pretty safe. You can now safely perform | and & on doubles as well ;-} Andre' -- André Pönitz [EMAIL PROTECTED]

RE: inset table and table float in docbook

2001-03-22 Thread Juergen Vigna
On 22-Mar-2001 Jose Abilio Oliveira Matos wrote: > Hi, > I have one question related with docbook. If a table is inside a > table float, the output code is different. The difference is a simple > wrapper . > > Is it possible for the table to know that the table float is one of >

Re: Compilation error

2001-03-22 Thread Lars Gullik Bjønnes
[EMAIL PROTECTED] (Lars Gullik Bjønnes) writes: | right there. | (I have a slightly more updated version in my tree, but it is far from | finished yet.) And this is a more updated version: template class EnumSet { public: EnumSet() : e_(static_cast(0)) {} EnumSet(E val) : e_(va

inset table and table float in docbook

2001-03-22 Thread Jose Abilio Oliveira Matos
Hi, I have one question related with docbook. If a table is inside a table float, the output code is different. The difference is a simple wrapper . Is it possible for the table to know that the table float is one of its ancestors? I only need to know if there is one table flo

Re: Compilation error

2001-03-22 Thread Lars Gullik Bjønnes
Jose Abilio Oliveira Matos <[EMAIL PROTECTED]> writes: | On Thu, Mar 22, 2001 at 04:18:20PM +0100, Lars Gullik Bjønnes wrote: | > | > I have some helper classes that can be useful, but not quite finished | > and tested yet: | > | > template | > class EnumSet { | > | > }; | | Wh

Re: Compilation error

2001-03-22 Thread Jose Abilio Oliveira Matos
On Thu, Mar 22, 2001 at 04:18:20PM +0100, Lars Gullik Bjønnes wrote: > > I have some helper classes that can be useful, but not quite finished > and tested yet: > > template > class EnumSet { > > }; Where is it? I would only need to replace, bitset < LAST > by EnumSet , no?

Re: [Cvslog] lyx-devel/src/frontends/controllers

2001-03-22 Thread Angus Leeming
Lars, I really, really like your cvsweb interface! #warning what are you really doing here... (Lgb) // why not just send a stringstream to the calling func? // then the reader would look like: // stringstream ss; // ss << in.rdbuf(); I didn't do this because I di

Re: Compilation error

2001-03-22 Thread Lars Gullik Bjønnes
Jose Abilio Oliveira Matos <[EMAIL PROTECTED]> writes: | This is my code, I will replace it tonight, unless someone beats |me first. I have some helper classes that can be useful, but not quite finished and tested yet: template class EnumSet { public: EnumSet() : e_(static_cast(0

Re: small patch (perhaps) + questions

2001-03-22 Thread Edwin Leuven
> Fantastic!!! Somebody else using the controllers! Welcome aboard! Glad you liked the brochure. Hope you will like the trip. ;-) Ed.

Re: Can't compile

2001-03-22 Thread Lars Gullik Bjønnes
Juergen Vigna <[EMAIL PROTECTED]> writes: | On 22-Mar-2001 Angus Leeming wrote: | | > Oops! Wonder why mine compiled? | | > | | Nope! Didn't help! Update from cvs now. -- Lgb

Re: Can't compile

2001-03-22 Thread Lars Gullik Bjønnes
Angus Leeming <[EMAIL PROTECTED]> writes: | > My questions are: | > | > Where to find ios_base? (ControlCredits.C) | | Oops! Wonder why mine compiled? | | no no... just change the ios_base to ios I already did this in my local three. (and just committed) -- Lgb

Re: Compilation error

2001-03-22 Thread Jose Abilio Oliveira Matos
On Thu, Mar 22, 2001 at 01:05:16PM +0100, Lars Gullik Bjønnes wrote: > Dekel Tsur <[EMAIL PROTECTED]> writes: > > | g++ -DHAVE_CONFIG_H -I. -I. -I. -I.. -I.. -I../boost-isystem > | /usr/X11R6/include -O -fno-rtti -fno-exceptions -W -Wall -c buffer.C > | buffer.C:21: bitset: No such file or d

Re: Can't compile

2001-03-22 Thread Juergen Vigna
On 22-Mar-2001 Angus Leeming wrote: > Oops! Wonder why mine compiled? > Nope! Didn't help! Jürgen -- -._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._ Dr. Jürgen VignaE-Mail: [EMAIL PROTECTED] Italienallee 13/N Tel/Fax: +39-0471-450260 / +39-0471-450

Re: Can't compile

2001-03-22 Thread Angus Leeming
> My questions are: > > Where to find ios_base? (ControlCredits.C) Oops! Wonder why mine compiled? A

Re: small patch (perhaps) + questions

2001-03-22 Thread Angus Leeming
> Angus, I hope to have some time soon to help along with this quest to MVCise > the rest of the dialogs. Can you possibly tell the mailing list when you start > working on a dialog so any work doesn't clash ? ;-) Sure. Since last commit FormError is done and FormInclude is being done. This me

Can't compile

2001-03-22 Thread Juergen Vigna
I wanted to commit the minipage changes I made, but I cannot compile anymore. My questions are: Where to find ios_base? (ControlCredits.C) The log follows: --- g++ -DHAVE_CONFIG_H -I. -I. -I../../../src -I../../../src/ -I..

Re: small patch (perhaps) + questions

2001-03-22 Thread John Levon
On Thu, 22 Mar 2001, Angus Leeming wrote: > On Thursday 22 March 2001 14:43, Edwin Leuven wrote: > > I will do the following: > > > > 1. > > > > frontends/xforms/FormSpell.[Ch] > > frontends/xforms/form_spell.[Ch] > > frontends/xforms/forms/form_spell.fd > > > > 2. > > > > frontends/controll

Re: small patch (perhaps) + questions

2001-03-22 Thread Juergen Vigna
On 22-Mar-2001 Edwin Leuven wrote: > Do you agree? I do! Jürgen -- -._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._ Dr. Jürgen VignaE-Mail: [EMAIL PROTECTED] Italienallee 13/N Tel/Fax: +39-0471-450260 / +39-0471-450253 I-39100 Bozen Web:

Re: small patch (perhaps) + questions

2001-03-22 Thread Angus Leeming
On Thursday 22 March 2001 14:43, Edwin Leuven wrote: > I will do the following: > > 1. > > frontends/xforms/FormSpell.[Ch] > frontends/xforms/form_spell.[Ch] > frontends/xforms/forms/form_spell.fd > > 2. > > frontends/controllers/ControlSpell.[Ch] > > where the controller uses the present sp

Re: small patch (perhaps) + questions

2001-03-22 Thread Edwin Leuven
> I had a look at the patch! I thought it was a GUII patch but what you did > is just moving some functions around! IMO this is not good it just makes > spellchecker.C more complicated. If you want to remove those functions > from BufferView, then IMO it's better to move them inside a new file > (

Re: C++ question

2001-03-22 Thread Dekel Tsur
On Thu, Mar 22, 2001 at 02:43:31PM +0100, Lars Gullik Bjønnes wrote: > | http://lambda.cs.utu.fi/ > I don't want to begin using the LL lib before it is accepted into > Boost. And the list of supported compilers (http://lambda.cs.utu.fi/supported_compilers.html) contains only gcc 2.95 ...

RE: small patch (perhaps) + questions

2001-03-22 Thread Juergen Vigna
On 21-Mar-2001 Edwin Leuven wrote: > Hi All, > Hi Edwin! > As a first hesitant step towards cleaning up the spellcheck code (and move it > to frontends) this patch moves some functions out of BufferView into the > spellcheck code. It's perhaps not very pretty but I don't see why we have I

Re: C++ question

2001-03-22 Thread Andre Poenitz
> In other words, using directly the lambda-expression > $\lambda x.-sin(x*pi/180)$ > > It works with simple expressions, functions, functors, member functions, > has control flow, exceptions handling ... Nice, isn't it? ;-) Andre' -- André Pönitz [EMA

Re: LyX fails to create .lyx

2001-03-22 Thread Jean-Marc Lasgouttes
> "Christian" == Christian B Wiik <[EMAIL PROTECTED]> writes: Christian> [Jean-Marc Lasgouttes <[EMAIL PROTECTED]>] | Christian> > "Christian" == Christian B Wiik Christian> <[EMAIL PROTECTED]> writes: | | Christian> User Christian> LyX directory: /home/christbw/./ | | This should not Chr

Re: C++ question

2001-03-22 Thread Andre Poenitz
> Where can I get this ? Freshmeat turns up blank. A snippet from the main header file: // -- ll.hpp -- Lambda Library // - // Copyright (C) 1999, 2000 Jaakko Järvi ([EMAIL PROTECTED]) // // Permission to copy, use, sell and distribute this software i

Re: LyX fails to create .lyx

2001-03-22 Thread Christian B. Wiik
[Jean-Marc Lasgouttes <[EMAIL PROTECTED]>] | > "Christian" == Christian B Wiik <[EMAIL PROTECTED]> writes: | | Christian> User LyX directory: /home/christbw/./ | | This should not happen. What does | grep PACKAGE src/config.h | say? Did you do something special to configure LyX? #define P

Re: C++ question

2001-03-22 Thread Lars Gullik Bjønnes
Yves Bastide <[EMAIL PROTECTED]> writes: | > Where can I get this ? Freshmeat turns up blank. | > | http://lambda.cs.utu.fi/ | | I didn't know either, but jumped on it the instant I read André's message. | Seems it can make all those pesky five-lines functors a bad memory. I don't want to begi

Re: LyX fails to create .lyx

2001-03-22 Thread Jean-Marc Lasgouttes
> "Christian" == Christian B Wiik <[EMAIL PROTECTED]> writes: Christian> User LyX directory: /home/christbw/./ This should not happen. What does grep PACKAGE src/config.h say? Did you do something special to configure LyX? JMarc

Re: "A truly unknown func!" ??

2001-03-22 Thread Jean-Marc Lasgouttes
> "R" == R Lahaye <[EMAIL PROTECTED]> writes: R> Hi, All options in Edit->Floats&Insets will print out text in the R> text terminal: R>A truly unknown func! This is because these functions have not yet been implemented for new insets. JMarc

Re: C++ question

2001-03-22 Thread John Levon
On Thu, 22 Mar 2001, Yves Bastide wrote: > On Thu, Mar 22, 2001 at 12:40:03PM +, John Levon wrote: > > On Wed, 21 Mar 2001, Andre Poenitz wrote: > > > > > I admit that functors in the current Standard Lirary are clumsy to use. > > > If LyX would use them on a regular base I'd suggest to use

Re: C++ question

2001-03-22 Thread Yves Bastide
On Thu, Mar 22, 2001 at 12:40:03PM +, John Levon wrote: > On Wed, 21 Mar 2001, Andre Poenitz wrote: > > > I admit that functors in the current Standard Lirary are clumsy to use. > > If LyX would use them on a regular base I'd suggest to use the 'Lambda > > Library' which makes those things mu

Re: C++ question

2001-03-22 Thread Jean-Marc Lasgouttes
> "John" == John Levon <[EMAIL PROTECTED]> writes: John> Oh, and JMarc, is the comment about gcc 2.8.1 in John> support/debugstream still applicable now ? Now that we use namespaces all over, support for gcc 2.8.1 should be considered as dead. JMarc

lyx1.2.0cvs: open tables/images?

2001-03-22 Thread Kaspar Pflugshaupt
Hello, I've come into the habit of regularly compiling Lyx from CVS. There have been constant improvements e.g. of the table editing features, which I liked (and used) a lot. However, with the current code (as of today), I had a nasty surprise: I noticed that the small "tab" and "fig" tags we

Re: C++ question

2001-03-22 Thread John Levon
On Wed, 21 Mar 2001, Andre Poenitz wrote: > I admit that functors in the current Standard Lirary are clumsy to use. > If LyX would use them on a regular base I'd suggest to use the 'Lambda > Library' which makes those things much easier to write and more pleasing to > the eye, but for the occasio

Re: Compilation error

2001-03-22 Thread Lars Gullik Bjønnes
Andre Poenitz <[EMAIL PROTECTED]> writes: | > And I don't see whay a bitset should be used... | | Encapsulation? of what? Lgb

Re: Compilation error

2001-03-22 Thread Andre Poenitz
> And I don't see whay a bitset should be used... Encapsulation? Andre' -- André Pönitz [EMAIL PROTECTED]

Re: Compilation error

2001-03-22 Thread Lars Gullik Bjønnes
Dekel Tsur <[EMAIL PROTECTED]> writes: | g++ -DHAVE_CONFIG_H -I. -I. -I. -I.. -I.. -I../boost-isystem | /usr/X11R6/include -O -fno-rtti -fno-exceptions -W -Wall -c buffer.C | buffer.C:21: bitset: No such file or directory | make[2]: *** [buffer.o] Error 1 And I don't see whay a bitset shoul

Re: Compilation error

2001-03-22 Thread Lars Gullik Bjønnes
Dekel Tsur <[EMAIL PROTECTED]> writes: | g++ -DHAVE_CONFIG_H -I. -I. -I. -I.. -I.. -I../boost-isystem | /usr/X11R6/include -O -fno-rtti -fno-exceptions -W -Wall -c buffer.C | buffer.C:21: bitset: No such file or directory | make[2]: *** [buffer.o] Error 1 Hmm, what are we using bitset for?

Compilation error

2001-03-22 Thread Dekel Tsur
g++ -DHAVE_CONFIG_H -I. -I. -I. -I.. -I.. -I../boost-isystem /usr/X11R6/include -O -fno-rtti -fno-exceptions -W -Wall -c buffer.C buffer.C:21: bitset: No such file or directory make[2]: *** [buffer.o] Error 1

Re: Win32 support

2001-03-22 Thread Jean-Marc Lasgouttes
> "Steven" == Steven van Dijk <[EMAIL PROTECTED]> writes: Steven> This patch seems to solve the latter problem, and maybe the Steven> first one too (bibdata contains paths). I tried to search CVS Steven> to find this patch, and I did not find it. I am unfamiliar Steven> with the interface, so

Re: LyX 1.1.6fix1 & non-US keyboard & KDE 2.0.x problem

2001-03-22 Thread Jean-Marc Lasgouttes
> "Sasa" == Sasa Janiska <[EMAIL PROTECTED]> writes: Sasa> Hi! I'm trying to run LyX on SuSE 7.1 with KDE 2.0.x and use it Sasa> for Croatian language. Sasa> I have Croatian characters in all KDE applications, but I cannot Sasa> enter them in LyX although it can display them. What version o

Re: minipages & new insets

2001-03-22 Thread Jean-Marc Lasgouttes
> "Juergen" == Juergen Vigna <[EMAIL PROTECTED]> writes: Juergen> On 22-Mar-2001 Jean-Marc Lasgouttes wrote: >> Dumb question: why should we have handling for paragraph and hfill >> in minipages? Since this can be handled directly by LyX, shoudn't >> we remove such features now (and convert g

Re: small patch (perhaps) + questions

2001-03-22 Thread Juergen Vigna
On 22-Mar-2001 Edwin Leuven wrote: > Please tell me if these questions are too ignorant and stupid to merit a > reply: No they aren't but I didn't have time yesterday to have a look at your patch. I hopefully have time today and then I'll answer you (as much as I can/and know ;) Jürgen

Re: small patch (perhaps) + questions

2001-03-22 Thread Andre Poenitz
> Please tell me if these questions are too ignorant and stupid to merit a > reply: Not really, I'd just expected other people to take care of it since it is not my ballpark. Anyway: > > As a first hesitant step towards cleaning up the spellcheck code (and move > > it to frontends) this patch m

Real last call for 1.1.6fix2? (status update #4)

2001-03-22 Thread Jean-Marc Lasgouttes
Hello, Appended as usual is a list of what has been fixed since 1.1.6fix1. My plan is to release 1.1.6fix2 soon (tomorrow?). Lars, will you be able today or tomorrow to prepare a tar file if I flag the version? I'll do the updloads, patch and announcement. Kayvan, will you be able to provide a r

Re: small patch (perhaps) + questions

2001-03-22 Thread Edwin Leuven
Please tell me if these questions are too ignorant and stupid to merit a reply: > As a first hesitant step towards cleaning up the spellcheck code (and move > it to frontends) this patch moves some functions out of BufferView into the > spellcheck code. It's perhaps not very pretty but I don't s

Re: Floats-caption missing?

2001-03-22 Thread Lars Gullik Bjønnes
Eildert Groeneveld <[EMAIL PROTECTED]> writes: | Hello all, | when creating a float with the current CVS version of lyx, I do not get the | Figure: prompt for adding the caption for that float. Has that changed or | am I missing something? But you get a "Senseless:" right?, Just use that. on nex

Re: CVS lyx compile problem on Solaris

2001-03-22 Thread Angus Leeming
> | > LYX no longer links on my Solaris machine. Anyone have a patch? > | > | Did you try a clean build? (make maintainer-clean;./autogen.sh;configure;make) > | This seems like some problem with not recompiled object-code. > > It is fixed in CVS. H. Thanks, Lars. A

Floats-caption missing?

2001-03-22 Thread Eildert Groeneveld
Hello all, when creating a float with the current CVS version of lyx, I do not get the Figure: prompt for adding the caption for that float. Has that changed or am I missing something? greetings Eildert Groeneveld == Institute for Animal Science an

Re: minipages & new insets

2001-03-22 Thread Juergen Vigna
On 22-Mar-2001 Jean-Marc Lasgouttes wrote: > Dumb question: why should we have handling for paragraph and hfill in > minipages? Since this can be handled directly by LyX, shoudn't we > remove such features now (and convert gracefully old files, of > course)? We are talking about reading old fil

Re: minipages & new insets

2001-03-22 Thread Jean-Marc Lasgouttes
> "Juergen" == Juergen Vigna <[EMAIL PROTECTED]> writes: Juergen>* The first of a series of minipages should be in it's own Juergen> paragraph Lars did this but he also regarded the "Hfill" Juergen> flag! In the old output routine this "Hfill" flag was not Juergen> regarded, or if it was

RE: minipages & new insets

2001-03-22 Thread Juergen Vigna
Some more notes on this: 1. I've seen that Lars was busy and implemented the stuff where I only put #warnings (very good work Lars!) 2. I fixed a small bug in the LaTeX production code where only withp_ was outputed but not width_ (if not empty). 3. We have still some missbehaviours in t

Re: CVS lyx compile problem on Solaris

2001-03-22 Thread Lars Gullik Bjønnes
Juergen Vigna <[EMAIL PROTECTED]> writes: | On 21-Mar-2001 Kayvan Sylvan wrote: | > Hi folks, | > | > LYX no longer links on my Solaris machine. Anyone have a patch? | | Did you try a clean build? (make maintainer-clean;./autogen.sh;configure;make) | This seems like some problem with not recomp

RE: minipages & new insets

2001-03-22 Thread Juergen Vigna
On 22-Mar-2001 Garst R. Reese wrote: > I notice that they are still not working. Is this still a known problem > or should I send a more complete report? No you're right some parameters is not taken into account when outputting the LaTeX code. I'll have a look at this today! Jürgen -- -.

RE: CVS lyx compile problem on Solaris

2001-03-22 Thread Juergen Vigna
On 21-Mar-2001 Kayvan Sylvan wrote: > Hi folks, > > LYX no longer links on my Solaris machine. Anyone have a patch? Did you try a clean build? (make maintainer-clean;./autogen.sh;configure;make) This seems like some problem with not recompiled object-code. Jürgen -- -._-._-._-._-._-._-.