GUI: Update homepage URL to About-dialog.

This commit is contained in:
Kimmo Varis 2011-01-27 13:14:53 +02:00
parent a794edd934
commit 97f041f292
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ AboutDialog::AboutDialog(const QString &version, QWidget *parent)
mUI.setupUi(this);
mUI.mVersion->setText(mUI.mVersion->text().arg(version));
QString url = "<a href=\"http://cppcheck.wiki.sourceforge.net/\">http://cppcheck.wiki.sourceforge.net/</a>";
QString url = "<a href=\"http://cppcheck.sourceforge.net/\">http://cppcheck.sourceforge.net/</a>";
mUI.mHomepage->setText(mUI.mHomepage->text().arg(url));
connect(mUI.mButtons, SIGNAL(accepted()), this, SLOT(accept()));
}