From 3873a36338eb1313e9e4a72dd1e65d79fb091c03 Mon Sep 17 00:00:00 2001 From: sledgehammer999 Date: Wed, 15 Jul 2015 22:45:13 +0300 Subject: [PATCH] Fix printing of the copyright symbol in the About dialog. --- src/gui/about_imp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/about_imp.h b/src/gui/about_imp.h index babd17976..f3b3e7584 100644 --- a/src/gui/about_imp.h +++ b/src/gui/about_imp.h @@ -54,7 +54,7 @@ class about : public QDialog, private Ui::AboutDlg{ QString::fromUtf8("

") + tr("An advanced BitTorrent client programmed in C++, based on Qt toolkit and libtorrent-rasterbar.") + QString::fromUtf8("

") + - trUtf8("Copyright %1 2006-2015 The qBittorrent project").arg(C_COPYRIGHT) + + trUtf8("Copyright %1 2006-2015 The qBittorrent project").arg(QString::fromUtf8(C_COPYRIGHT)) + QString::fromUtf8("

") + tr("Home Page: ") + QString::fromUtf8("http://www.qbittorrent.org

") +