fix crash when spellchecking; update translations

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/lyx-1_1_5@817 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2000-06-15 15:57:08 +00:00
parent ae92878e72
commit 70f26d6671
5 changed files with 798 additions and 784 deletions

View File

@ -1,3 +1,9 @@
2000-06-15 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/text.C (SelectNextWord): protect against null pointers with
old-style string streams. (fix from Paul Theo Gonciari
<gptheo@yahoo.com>)
2000-06-13 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr> 2000-06-13 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* lib/examples/decimal.lyx: new example file from Mike Ressler. * lib/examples/decimal.lyx: new example file from Mike Ressler.

View File

@ -1,3 +1,9 @@
2000-06-15 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* eu.po: update from Dooteo
* fr.po: update from Emmanuel
2000-06-07 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr> 2000-06-07 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* de.po: update from Pit * de.po: update from Pit

725
po/eu.po

File diff suppressed because it is too large Load Diff

828
po/fr.po

File diff suppressed because it is too large Load Diff

View File

@ -3140,6 +3140,7 @@ char * LyXText::SelectNextWord(float & value)
#ifdef HAVE_SSTREAM #ifdef HAVE_SSTREAM
&& latex.str() == "\\-" && latex.str() == "\\-"
#else #else
&& latex.str() // protect against null pointers
&& string(latex.str(), 3) == "\\-" // this is not nice at all && string(latex.str(), 3) == "\\-" // this is not nice at all
#endif #endif
)) ))