mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
include iterator
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3374 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
62e2aecdfb
commit
d5fefbb6d8
@ -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.
|
||||
|
@ -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)
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user