compilation fixes

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1785 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2001-03-16 14:47:48 +00:00
parent 97f0b8686d
commit a810f13e94
5 changed files with 13 additions and 3 deletions

View File

@ -297,7 +297,7 @@ notify us.
o Configure will seemingly fail to find xpm.h and forms.h on linux
if the kernel headers are not available. Two cases are possible:
- you have not installed the kernel sources. The you should
- you have not installed the kernel sources. Then you should
install them or at least the kernel-headers package (or
whatever it is called in your distribution).

View File

@ -1,3 +1,8 @@
2001-03-16 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* FormMaths.C (C_FormMathsDelimCB): add usual .c_str() for lyxstring
compatibility.
2001-03-16 Angus Leeming <a.leeming@ic.ac.uk>
* Form_various.h: cleaned up #includes and forward declarations.

View File

@ -149,13 +149,13 @@ extern "C" void C_FormMathsDelimCB(FL_OBJECT * ob, long data)
switch (val) {
case MM_OK:
form->insertDelim(ost.str());
form->insertDelim(ost.str().c_str());
case MM_CLOSE:
fl_hide_form(form->delim_->form);
break;
case MM_APPLY:
form->insertDelim(ost.str());
form->insertDelim(ost.str().c_str());
break;
/* the bmtable */

View File

@ -1,3 +1,7 @@
2001-03-16 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* math_rowst.C: add missing #include <config.h>.
2001-03-16 André Pönitz <poenitz@htwm.de>
* math_matrixinset.h:

View File

@ -1,3 +1,4 @@
#include <config.h>
#include "math_rowst.h"
#include "support/LAssert.h"