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:
Richard Heck 2008-02-19 03:46:11 +00:00
parent 7dcffe09f4
commit a97b6295c4
3 changed files with 3 additions and 7 deletions

View File

@ -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();

View File

@ -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;

View File

@ -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.