mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
A couple more trivial compilation fixes.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5193 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
ae50323b0b
commit
6bfcc23b3f
@ -3,6 +3,10 @@
|
||||
* BufferView_pimpl.h: qualified name is not allowed in member
|
||||
declaration: WorkArea & Pimpl::workarea() const;
|
||||
|
||||
* factory.C: added using std::endl directive.
|
||||
|
||||
* text3.C: added using std::find and std::vector directives.
|
||||
|
||||
2002-08-29 André Pönitz <poenitz@gmx.net>
|
||||
|
||||
* lyxtext.h:
|
||||
|
@ -28,6 +28,7 @@
|
||||
|
||||
#include <cstdio>
|
||||
|
||||
using std::endl;
|
||||
|
||||
Inset * createInset(FuncRequest const & cmd)
|
||||
{
|
||||
|
@ -40,6 +40,8 @@
|
||||
#include <clocale>
|
||||
|
||||
using std::endl;
|
||||
using std::find;
|
||||
using std::vector;
|
||||
|
||||
extern string current_layout;
|
||||
extern int bibitemMaxWidth(BufferView *, LyXFont const &);
|
||||
|
Loading…
Reference in New Issue
Block a user