From 5f7747d6b60f11341c58c9dfb1ef4b53829d3113 Mon Sep 17 00:00:00 2001 From: Enrico Forestieri Date: Wed, 10 Jan 2007 17:18:41 +0000 Subject: [PATCH] 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 --- src/frontends/qt4/QErrorList.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontends/qt4/QErrorList.C b/src/frontends/qt4/QErrorList.C index fd84518356..9b254cf61a 100644 --- a/src/frontends/qt4/QErrorList.C +++ b/src/frontends/qt4/QErrorList.C @@ -48,7 +48,7 @@ void QErrorList::select(QListWidgetItem * wi) void QErrorList::update_contents() { - setTitle(lyx::from_ascii(controller().name())); + setTitle(lyx::from_utf8(controller().name())); dialog_->errorsLW->clear(); dialog_->descriptionTB->setPlainText(QString());