two small bugs in the errorlist

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6963 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Alfredo Braunstein 2003-05-14 09:36:52 +00:00
parent 4c16922aad
commit 447e92fe8e
4 changed files with 13 additions and 4 deletions

View File

@ -1,8 +1,13 @@
2003-05-14 Rob Lahaye <lahaye@users.sourceforge.net>
* ControlErrorList.C (clearParams): replace string::clear by
string::erase
2003-05-14 Lars Gullik Bjønnes <larsbj@gullik.net>
* ControlErrorList.C (goTo): use lyxerr not cout.
2003-05-12 Alfredo Braunstein: <abraunst@libero.it>
2003-05-13 Alfredo Braunstein: <abraunst@libero.it>
* ControlErrorList.[Ch]: added
* Makefile.am: the above adittion

View File

@ -37,7 +37,7 @@ ControlErrorList::ControlErrorList(Dialog & d)
void ControlErrorList::clearParams()
{
logfilename_.clear();
logfilename_.erase();
clearErrors();
}

View File

@ -1,3 +1,7 @@
2003-05-14 Juergen Spitzmueller <juergen.sp@t-online.de>
* QErrorList.C (select): added a missing toqstr()
2003-05-14 Lars Gullik Bjønnes <larsbj@gullik.net>
* Menubar_pimpl.C (~Pimpl): move out of line
@ -5,7 +9,7 @@
(view): ditto
(backend): ditto
2003-05-12 Alfredo Braunstein <abraunst@libero.it>
2003-05-13 Alfredo Braunstein <abraunst@libero.it>
* QErrorList.[Ch]:
* QErrorListDialog.[Ch]: added

View File

@ -41,7 +41,7 @@ void QErrorList::build_dialog()
void QErrorList::select(int item)
{
controller().goTo(item);
dialog_->descriptionTB->setText(controller().ErrorList()[item].description);
dialog_->descriptionTB->setText(toqstr(controller().ErrorList()[item].description));
}