mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
Clean up a bit.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23058 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
7dcffe09f4
commit
a97b6295c4
@ -567,7 +567,7 @@ bool Buffer::readDocument(Lexer & lex)
|
||||
}
|
||||
|
||||
// read main text
|
||||
bool const res = text().read(*this, lex, errorList, &inset());
|
||||
bool const res = text().read(*this, lex, errorList, &(d->inset));
|
||||
|
||||
updateMacros();
|
||||
updateMacroInstances();
|
||||
|
@ -1160,7 +1160,7 @@ void Text::write(Buffer const & buf, ostream & os) const
|
||||
|
||||
|
||||
bool Text::read(Buffer const & buf, Lexer & lex,
|
||||
ErrorList & errorList, Inset * insetPtr)
|
||||
ErrorList & errorList, InsetText * insetPtr)
|
||||
{
|
||||
depth_type depth = 0;
|
||||
|
||||
|
@ -260,12 +260,8 @@ public:
|
||||
void write(Buffer const & buf, std::ostream & os) const;
|
||||
/// returns whether we've seen our usual 'end' marker
|
||||
/// insetPtr is the containing Inset
|
||||
/// FIXME This should really take an InsetText, but it can't yet
|
||||
/// do so because Buffer::inset() returns an Inset and we have no
|
||||
/// access to the InsetText hidden away in Buffer::Impl. This is
|
||||
/// easy enough to fix but will have to wait a bit.
|
||||
bool read(Buffer const & buf, Lexer & lex, ErrorList & errorList,
|
||||
Inset * insetPtr);
|
||||
InsetText * insetPtr);
|
||||
|
||||
/// delete double spaces, leading spaces, and empty paragraphs around old cursor.
|
||||
/// \retval true if a change has happened and we need a redraw.
|
||||
|
Loading…
Reference in New Issue
Block a user