mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
compilation fixes
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1785 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
97f0b8686d
commit
a810f13e94
2
INSTALL
2
INSTALL
@ -297,7 +297,7 @@ notify us.
|
|||||||
o Configure will seemingly fail to find xpm.h and forms.h on linux
|
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:
|
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
|
install them or at least the kernel-headers package (or
|
||||||
whatever it is called in your distribution).
|
whatever it is called in your distribution).
|
||||||
|
|
||||||
|
@ -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>
|
2001-03-16 Angus Leeming <a.leeming@ic.ac.uk>
|
||||||
|
|
||||||
* Form_various.h: cleaned up #includes and forward declarations.
|
* Form_various.h: cleaned up #includes and forward declarations.
|
||||||
|
@ -149,13 +149,13 @@ extern "C" void C_FormMathsDelimCB(FL_OBJECT * ob, long data)
|
|||||||
|
|
||||||
switch (val) {
|
switch (val) {
|
||||||
case MM_OK:
|
case MM_OK:
|
||||||
form->insertDelim(ost.str());
|
form->insertDelim(ost.str().c_str());
|
||||||
case MM_CLOSE:
|
case MM_CLOSE:
|
||||||
fl_hide_form(form->delim_->form);
|
fl_hide_form(form->delim_->form);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case MM_APPLY:
|
case MM_APPLY:
|
||||||
form->insertDelim(ost.str());
|
form->insertDelim(ost.str().c_str());
|
||||||
break;
|
break;
|
||||||
|
|
||||||
/* the bmtable */
|
/* the bmtable */
|
||||||
|
@ -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>
|
2001-03-16 André Pönitz <poenitz@htwm.de>
|
||||||
|
|
||||||
* math_matrixinset.h:
|
* math_matrixinset.h:
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
#include <config.h>
|
||||||
|
|
||||||
#include "math_rowst.h"
|
#include "math_rowst.h"
|
||||||
#include "support/LAssert.h"
|
#include "support/LAssert.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user