# HG changeset patch # User Chris Cannam # Date 1341342586 -3600 # Node ID 54ca6a0e9aeff29a2e9080dc0088b0ec628633a0 # Parent 2985c2a9014605a9d4c29ad653b1f9bca682903c URL fix diff -r 2985c2a90146 -r 54ca6a0e9aef src/mainwindow.cpp --- a/src/mainwindow.cpp Fri May 18 09:34:12 2012 +0100 +++ b/src/mainwindow.cpp Tue Jul 03 20:09:46 2012 +0100 @@ -3140,7 +3140,7 @@ QString tag = QString("version-%1-available-show").arg(version); if (settings.value(tag, true).toBool()) { QString title(tr("Newer version available")); - QString text(tr("

Newer version available

You are using version %1 of EasyMercurial, but version %3 is now available.

Please see the EasyMercurial website for more information.

").arg(EASYHG_VERSION).arg(version)); + QString text(tr("

Newer version available

You are using version %1 of EasyMercurial, but version %3 is now available.

Please see the EasyMercurial website for more information.

").arg(EASYHG_VERSION).arg(version)); QMessageBox::information(this, title, text); settings.setValue(tag, false); }