mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +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>
|
||||
|
||||
* 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>
|
||||
|
||||
* FormSendto.C:
|
||||
|
@ -24,6 +24,7 @@
|
||||
|
||||
#include <vector>
|
||||
|
||||
using std::vector;
|
||||
using std::endl;
|
||||
|
||||
|
||||
|
@ -31,6 +31,9 @@
|
||||
#include "debug.h"
|
||||
|
||||
using std::vector;
|
||||
using std::max;
|
||||
using std::endl;
|
||||
using std::ostream;
|
||||
|
||||
extern LyXAction lyxaction;
|
||||
|
||||
|
@ -20,6 +20,8 @@
|
||||
#pragma interface
|
||||
#endif
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "support/LOstream.h"
|
||||
#include "LString.h"
|
||||
|
||||
@ -65,7 +67,7 @@ TocList const getTocList(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
|
||||
by ControlToc::getContents() */
|
||||
|
Loading…
Reference in New Issue
Block a user