mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 03:03:06 +00:00
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:
parent
4c16922aad
commit
447e92fe8e
@ -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
|
||||
|
@ -37,7 +37,7 @@ ControlErrorList::ControlErrorList(Dialog & d)
|
||||
|
||||
void ControlErrorList::clearParams()
|
||||
{
|
||||
logfilename_.clear();
|
||||
logfilename_.erase();
|
||||
clearErrors();
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
|
@ -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));
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user