1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 07:18:08 +00:00

A msvc compilation fix

This commit is contained in:
Christophe Dumez 2010-03-30 19:38:19 +00:00
parent 12881dd4c4
commit 3254dae59f

View File

@ -92,6 +92,9 @@ class about : public QDialog, private Ui::AboutDlg{
te_translation->scrollToAnchor(QString::fromUtf8("top")); te_translation->scrollToAnchor(QString::fromUtf8("top"));
// License // License
te_license->append(QString::fromUtf8("<a name='top'></a>")); te_license->append(QString::fromUtf8("<a name='top'></a>"));
#ifdef Q_WS_WIN
te_license->append(QString::fromUtf8("qBittorrent is licensed under the GNU General Public License version 2."));
#else
te_license->append(QString::fromUtf8("qBittorrent is licensed under the GNU General Public License version 2 with the\ te_license->append(QString::fromUtf8("qBittorrent is licensed under the GNU General Public License version 2 with the\
addition of the following special exception:\ addition of the following special exception:\
<br><br>\ <br><br>\
@ -438,6 +441,7 @@ exception statement from your version.</i>\
consider it more useful to permit linking proprietary applications with the<br>\ consider it more useful to permit linking proprietary applications with the<br>\
library. If this is what you want to do, use the GNU Library General<br>\ library. If this is what you want to do, use the GNU Library General<br>\
Public License instead of this License.<br>")); Public License instead of this License.<br>"));
#endif
te_license->scrollToAnchor(QString::fromUtf8("top")); te_license->scrollToAnchor(QString::fromUtf8("top"));
show(); show();
} }