mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-12 00:39:18 +00:00
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:
parent
ae92878e72
commit
70f26d6671
@ -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>
|
||||
|
||||
* lib/examples/decimal.lyx: new example file from Mike Ressler.
|
||||
|
@ -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>
|
||||
|
||||
* de.po: update from Pit
|
||||
|
@ -3140,7 +3140,8 @@ char * LyXText::SelectNextWord(float & value)
|
||||
#ifdef HAVE_SSTREAM
|
||||
&& latex.str() == "\\-"
|
||||
#else
|
||||
&& string(latex.str(), 3) == "\\-" // this is not nice at all
|
||||
&& latex.str() // protect against null pointers
|
||||
&& string(latex.str(), 3) == "\\-" // this is not nice at all
|
||||
#endif
|
||||
))
|
||||
cursor.pos++;
|
||||
|
Loading…
Reference in New Issue
Block a user