mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 11:08:41 +00:00
Fix another non-ascii filename related assertion
* src/frontends/qt4/QErrorList.C (QErrorList::update_contents): use from_utf8 instead of from_ascii. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16639 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
31cbae750d
commit
5f7747d6b6
@ -48,7 +48,7 @@ void QErrorList::select(QListWidgetItem * wi)
|
|||||||
|
|
||||||
void QErrorList::update_contents()
|
void QErrorList::update_contents()
|
||||||
{
|
{
|
||||||
setTitle(lyx::from_ascii(controller().name()));
|
setTitle(lyx::from_utf8(controller().name()));
|
||||||
dialog_->errorsLW->clear();
|
dialog_->errorsLW->clear();
|
||||||
dialog_->descriptionTB->setPlainText(QString());
|
dialog_->descriptionTB->setPlainText(QString());
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user