]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/QAbout.C
enable Font cache only for MacOSX and inline width() for other platform.
[lyx.git] / src / frontends / qt4 / QAbout.C
index d944f4de2ec2185fb838ec3f4b32459181f95243..4457c2053979f041505343f497e52d1472f0ba16 100644 (file)
@@ -41,7 +41,7 @@ namespace frontend {
 typedef QController<ControlAboutlyx, QView<QAboutDialog> > base_class;
 
 QAbout::QAbout(Dialog & parent)
-       : base_class(parent, _("About LyX"))
+       : base_class(parent, lyx::to_utf8(_("About LyX")))
 {
 }
 
@@ -114,7 +114,7 @@ void QAbout::build_dialog()
        QString const qtext = codec ?
                codec->toUnicode(out.str().c_str()) :
                toqstr(out.str());
-       dialog_->creditsTB->setPlainText(qtext);
+       dialog_->creditsTB->setHtml(qtext);
 
        // try to resize to a good size
        dialog_->copyrightTB->hide();