include iterator

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3374 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2002-01-14 15:29:40 +00:00
parent 62e2aecdfb
commit d5fefbb6d8
3 changed files with 11 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2002-01-14 Lars Gullik Bjønnes <larsbj@birdstep.com>
* lastfiles.C: include <iterator>
2002-01-14 Angus Leeming <a.leeming@ic.ac.uk>
* BufferView2.C (ChangeRefsIfUnique): use lyx::count rather than
@ -24,7 +28,6 @@
char and append it to the existing string.
(peek_event): modify the positioning data passed to the completion
browser so that it can be placed above the minibuffer rather than below.
2002-01-14 Lars Gullik Bjønnes <larsbj@birdstep.com>
* LyXAction.C (init): alloe error-next for readonly documents.

View File

@ -2125,7 +2125,7 @@ LyXText * InsetText::getLyXText(BufferView const * lbv,
if (!recursive && (cached_bview == lbv)) {
LyXText * lt = cached_text.get();
lyx::Assert(lt && lt->firstRow()->par() == par);
return cached_text.get();
return lt;
}
// Super UGLY! (Lgb)

View File

@ -15,13 +15,15 @@
#pragma implementation
#endif
#include <fstream>
#include <algorithm>
#include "support/FileInfo.h"
#include "lastfiles.h"
#include "debug.h"
#include "support/FileInfo.h"
#include <fstream>
#include <algorithm>
#include <iterator>
using std::getline;
using std::endl;