mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
std:: fixes for toc
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4733 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
1c52d8f898
commit
16668d1632
@ -1,3 +1,7 @@
|
|||||||
|
2002-07-21 John Levon <moz@compsoc.man.ac.uk>
|
||||||
|
|
||||||
|
* toc.[Ch]: std:: fixes
|
||||||
|
|
||||||
2002-07-21 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
|
2002-07-21 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
|
||||||
|
|
||||||
* toc.[Ch]: new files, containing helper functions to handle table
|
* toc.[Ch]: new files, containing helper functions to handle table
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2002-07-21 John Levon <moz@compsoc.man.ac.uk>
|
||||||
|
|
||||||
|
* FormToc.C: std:: fix
|
||||||
|
|
||||||
2002-07-21 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
|
2002-07-21 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
|
||||||
|
|
||||||
* FormSendto.C:
|
* FormSendto.C:
|
||||||
|
@ -24,6 +24,7 @@
|
|||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
using std::vector;
|
||||||
using std::endl;
|
using std::endl;
|
||||||
|
|
||||||
|
|
||||||
|
@ -31,6 +31,9 @@
|
|||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
using std::vector;
|
using std::vector;
|
||||||
|
using std::max;
|
||||||
|
using std::endl;
|
||||||
|
using std::ostream;
|
||||||
|
|
||||||
extern LyXAction lyxaction;
|
extern LyXAction lyxaction;
|
||||||
|
|
||||||
|
@ -20,6 +20,8 @@
|
|||||||
#pragma interface
|
#pragma interface
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
|
||||||
#include "support/LOstream.h"
|
#include "support/LOstream.h"
|
||||||
#include "LString.h"
|
#include "LString.h"
|
||||||
|
|
||||||
@ -65,7 +67,7 @@ TocList const getTocList(Buffer const *);
|
|||||||
std::vector<string> const getTypes(Buffer const *);
|
std::vector<string> const getTypes(Buffer const *);
|
||||||
|
|
||||||
///
|
///
|
||||||
void asciiTocList(string const &, Buffer const *, ostream &);
|
void asciiTocList(string const &, Buffer const *, std::ostream &);
|
||||||
|
|
||||||
/** Given the cmdName of the TOC param, returns the type used
|
/** Given the cmdName of the TOC param, returns the type used
|
||||||
by ControlToc::getContents() */
|
by ControlToc::getContents() */
|
||||||
|
Loading…
Reference in New Issue
Block a user