mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 05:25:26 +00:00
fixes from Angus
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2531 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
8ccadb0c78
commit
60e132e76e
@ -1,3 +1,5 @@
|
|||||||
|
#include <config.h>
|
||||||
|
|
||||||
#ifdef __GNUG__
|
#ifdef __GNUG__
|
||||||
#pragma implementation
|
#pragma implementation
|
||||||
#endif
|
#endif
|
||||||
@ -7,6 +9,7 @@
|
|||||||
#include "mathed/support.h"
|
#include "mathed/support.h"
|
||||||
#include "support/LOstream.h"
|
#include "support/LOstream.h"
|
||||||
|
|
||||||
|
using std::max;
|
||||||
|
|
||||||
MathDelimInset::MathDelimInset(latexkeys const * l, latexkeys const * r)
|
MathDelimInset::MathDelimInset(latexkeys const * l, latexkeys const * r)
|
||||||
: MathNestInset(1), left_(l), right_(r)
|
: MathNestInset(1), left_(l), right_(r)
|
||||||
|
@ -46,6 +46,8 @@
|
|||||||
#include "support/lstrings.h"
|
#include "support/lstrings.h"
|
||||||
|
|
||||||
using std::istream;
|
using std::istream;
|
||||||
|
using std::ostream;
|
||||||
|
using std::ios;
|
||||||
using std::endl;
|
using std::endl;
|
||||||
|
|
||||||
|
|
||||||
@ -128,7 +130,7 @@ enum {
|
|||||||
FLAG_NEWLINE = 1 << 6, // next \\\\ ends the parsing process
|
FLAG_NEWLINE = 1 << 6, // next \\\\ ends the parsing process
|
||||||
FLAG_ITEM = 1 << 7, // read a (possibly braced token)
|
FLAG_ITEM = 1 << 7, // read a (possibly braced token)
|
||||||
FLAG_BLOCK = 1 << 8, // next block ends the parsing process
|
FLAG_BLOCK = 1 << 8, // next block ends the parsing process
|
||||||
FLAG_LEAVE = 1 << 9, // leave the loop at the end
|
FLAG_LEAVE = 1 << 9 // leave the loop at the end
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user