Re: [Gnome] Recent files?

2007-12-06 Thread Jean-Marc Lasgouttes
Bernhard Reiter [EMAIL PROTECTED] writes: Under Gnome, files that are opened from within LyX (instead of e.g. being opened from within Gnome's file manager by double-clicking them) do not get listed in the Recent files menu. This is probably due to Gnome switching from freedesktop.org (FDO)

Re: [Gnome] Recent files?

2007-12-06 Thread Bernhard Reiter
Jean-Marc Lasgouttes wrote Bernhard Reiter writes: Under Gnome, files that are opened from within LyX (instead of e.g. being opened from within Gnome's file manager by double-clicking them) do not get listed in the Recent files menu. This is probably due to Gnome switching from

C++ string question

2007-12-06 Thread Uwe Stöhr
I have the following problem: I have a string named str with the value 0.8. It should be converted to a double, then multiplied by 100, and finally reconverted to a string. I used this code: convertstring(int(100 * convertdouble(str))); But this doesn't work, I get this string 0. What is

Re: C++ string question

2007-12-06 Thread Kornel Benko
Am Donnerstag, 6. Dezember 2007 schrieb Uwe Stöhr: I have the following problem: I have a string named str with the value 0.8. It should be converted to a double, then multiplied by 100, and finally reconverted to a string. I used this code: convertstring(int(100 *

Re: [Gnome] Recent files?

2007-12-06 Thread killermike
On Thursday 06 December 2007 11:48:54 Bernhard Reiter wrote: Jean-Marc Lasgouttes wrote Does that mean they don't appear in the resp. recent documents menus in KDE and Windows either if they're opened from within LyX? It seems that KDE adds documents to the recently opened docments list only

Re: [Cvslog] r21991 - /lyx-devel/trunk/src/support/FileName.cpp

2007-12-06 Thread Enrico Forestieri
On Thu, Dec 06, 2007 at 04:54:03PM -, [EMAIL PROTECTED] wrote: Author: forenr Date: Thu Dec 6 17:54:02 2007 New Revision: 21991 URL: http://www.lyx.org/trac/changeset/21991 Log: Let's actually warn when a directory could not be removed. Modified:

Re: C++ string question

2007-12-06 Thread Uwe Stöhr
You may try 0,8 (zero comma eight). Thanks for the suggestion, but my fault was that the string was not 0.8 but =0.8 - stupid me. thanks and regards Uwe

Re: C++ string question

2007-12-06 Thread Jean-Marc Lasgouttes
Kornel Benko [EMAIL PROTECTED] writes: But although the string is 0.8, isStrDbl returns false. You may try 0,8 (zero comma eight). I it works, we have a bug. JMarc

Re: Document Encoding

2007-12-06 Thread Uwe Stöhr
Chepe Kun schrieb: Sorry for the delay, Here is the file. Your formula used Unicode character 2013, this is the EN DASH. This character can be used for text but LaTeX can't handle them in math. You cannot use all characters in formulas without tricks and math can't handle non-latin

configure fails for putenv and setenv

2007-12-06 Thread reed
Building lyx-1.5.2 fails with: environment.cpp:82:2: error: #error No environment-setting function has been defined. This is because the configure originally failed detecting both setenv and putenv. configure:29975: checking for putenv configure:30031: cc -o conftest -O2

Cannot download Lyx installer

2007-12-06 Thread Tim
Hi, I've tried to download LyX-1.5.2-1-Installer.exe several times from several different computers from this page: http://wiki.lyx.org/Windows/Windows with no success. I turned off my firewall and virus checker but it did not help. I tried ftp to ftp.lyx.org with no success. Is the server

Re: Cannot download Lyx installer

2007-12-06 Thread Pavel Sanda
I tried ftp to ftp.lyx.org with no success. Is the server down? yes, it seems to be down. you can try mirrors (eg ftp://gd.tuwien.ac.at/publishing/tex/lyx/bin/1.5.2 ) pavel

Re: [Gnome] Recent files?

2007-12-06 Thread Jean-Marc Lasgouttes
Bernhard Reiter <[EMAIL PROTECTED]> writes: > Under Gnome, files that are opened from within LyX (instead of e.g. > being opened from within Gnome's file manager by double-clicking them) > do not get listed in the "Recent files" menu. This is probably due to > Gnome switching from freedesktop.org

Re: [Gnome] Recent files?

2007-12-06 Thread Bernhard Reiter
Jean-Marc Lasgouttes wrote > Bernhard Reiter writes: > > > Under Gnome, files that are opened from within LyX (instead of e.g. > > being opened from within Gnome's file manager by double-clicking them) > > do not get listed in the "Recent files" menu. This is probably due to > > Gnome switching

C++ string question

2007-12-06 Thread Uwe Stöhr
I have the following problem: I have a string named "str" with the value "0.8". It should be converted to a double, then multiplied by 100, and finally reconverted to a string. I used this code: convert(int(100 * convert(str))); But this doesn't work, I get this string "0". What is wrong?

Re: C++ string question

2007-12-06 Thread Kornel Benko
Am Donnerstag, 6. Dezember 2007 schrieb Uwe Stöhr: > I have the following problem: > > I have a string named "str" with the value "0.8". It should be converted to a > double, then > multiplied by 100, and finally reconverted to a string. > > I used this code: > > convert(int(100 *

Re: [Gnome] Recent files?

2007-12-06 Thread killermike
On Thursday 06 December 2007 11:48:54 Bernhard Reiter wrote: > Jean-Marc Lasgouttes wrote > Does that mean they don't appear in the resp. recent documents menus in > KDE and Windows either if they're opened from within LyX? It seems that KDE adds documents to the "recently opened docments list"

Re: [Cvslog] r21991 - /lyx-devel/trunk/src/support/FileName.cpp

2007-12-06 Thread Enrico Forestieri
On Thu, Dec 06, 2007 at 04:54:03PM -, [EMAIL PROTECTED] wrote: > Author: forenr > Date: Thu Dec 6 17:54:02 2007 > New Revision: 21991 > > URL: http://www.lyx.org/trac/changeset/21991 > Log: > Let's actually warn when a directory could not be removed. > > Modified: >

Re: C++ string question

2007-12-06 Thread Uwe Stöhr
> You may try "0,8" (zero comma eight). Thanks for the suggestion, but my fault was that the string was not "0.8" but "=0.8" - stupid me. thanks and regards Uwe

Re: C++ string question

2007-12-06 Thread Jean-Marc Lasgouttes
Kornel Benko <[EMAIL PROTECTED]> writes: >> But although the string is "0.8", isStrDbl returns "false". > > You may try "0,8" (zero comma eight). I it works, we have a bug. JMarc

Re: Document Encoding

2007-12-06 Thread Uwe Stöhr
Chepe Kun schrieb: Sorry for the delay, Here is the file. Your formula used Unicode character "2013", this is the "EN DASH". This character can be used for text but LaTeX can't handle them in math. You cannot use all characters in formulas without tricks and math can't handle non-latin

configure fails for putenv and setenv

2007-12-06 Thread reed
Building lyx-1.5.2 fails with: environment.cpp:82:2: error: #error No environment-setting function has been defined. This is because the configure originally failed detecting both setenv and putenv. configure:29975: checking for putenv configure:30031: cc -o conftest -O2

Cannot download Lyx installer

2007-12-06 Thread Tim
Hi, I've tried to download LyX-1.5.2-1-Installer.exe several times from several different computers from this page: http://wiki.lyx.org/Windows/Windows with no success. I turned off my firewall and virus checker but it did not help. I tried ftp to ftp.lyx.org with no success. Is the server

Re: Cannot download Lyx installer

2007-12-06 Thread Pavel Sanda
> I tried ftp to ftp.lyx.org with no success. > > Is the server down? yes, it seems to be down. you can try mirrors (eg ftp://gd.tuwien.ac.at/publishing/tex/lyx/bin/1.5.2 ) pavel