small tweaking (yes I'm dumb)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7210 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Alfredo Braunstein 2003-06-24 21:43:25 +00:00
parent 3508b30871
commit 37e207d926
3 changed files with 6 additions and 2 deletions

View File

@ -341,6 +341,7 @@ void BufferView::showErrorList(string const & action) const
if (getErrorList().size()) {
string const title = bformat(_("LyX: %1$s errors (%2$s)"), action, buffer()->fileName());
owner()->getDialogs().show("errorlist", title);
pimpl_->errorlist_.clear();
}
}
@ -349,7 +350,6 @@ ErrorList const &
BufferView::getErrorList() const
{
return pimpl_->errorlist_;
pimpl_->errorlist_.clear();
}

View File

@ -29,7 +29,6 @@ class UpdatableInset;
class WordLangTuple;
class Encoding;
class ErrorList;
class ErrorItem;
/**
* A buffer view encapsulates a view onto a particular

View File

@ -1,3 +1,8 @@
2003-06-24 Alfredo Brauntein <abraunst@lyx.org>
* BufferView.[Ch] (getErrorList): removed unneeded forward declare,
moved errorlist_.clear to showErrorList
2003-06-24 Alfredo Brauntein <abraunst@lyx.org>
* converter.C (scanLog, runLaTeX):