From bb986dd2035593dd9121ad8e65517b951b5ce8bd Mon Sep 17 00:00:00 2001 From: lordmulder Date: Tue, 20 Sep 2011 00:29:01 +0200 Subject: [PATCH] Re-added missing "
"'s that got lost in the recent refactoring. --- src/Dialog_MainWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Dialog_MainWindow.cpp b/src/Dialog_MainWindow.cpp index 2b909229..2a7336b7 100644 --- a/src/Dialog_MainWindow.cpp +++ b/src/Dialog_MainWindow.cpp @@ -956,8 +956,8 @@ void MainWindow::windowShown(void) if(m_settings->slowStartup() && m_settings->antivirNotificationsEnabled()) { QString message; - message += NOBR(tr("It seems that a bogus anti-virus software is slowing down the startup of LameXP.")); - message += NOBR(tr("Please refer to the %1 document for details and solutions!")).arg("F.A.Q."); + message += NOBR(tr("It seems that a bogus anti-virus software is slowing down the startup of LameXP.")).append("
"); + message += NOBR(tr("Please refer to the %1 document for details and solutions!")).arg("F.A.Q.").append("
"); if(QMessageBox::warning(this, tr("Slow Startup"), message, tr("Discard"), tr("Don't Show Again")) == 1) { m_settings->antivirNotificationsEnabled(false); -- 2.11.4.GIT