diff --git a/src/about_imp.h b/src/about_imp.h index fa8fe8da5..c3d7b24a9 100644 --- a/src/about_imp.h +++ b/src/about_imp.h @@ -92,6 +92,9 @@ class about : public QDialog, private Ui::AboutDlg{ te_translation->scrollToAnchor(QString::fromUtf8("top")); // License te_license->append(QString::fromUtf8("")); +#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\ addition of the following special exception:\

\ @@ -438,6 +441,7 @@ exception statement from your version.\ consider it more useful to permit linking proprietary applications with the
\ library. If this is what you want to do, use the GNU Library General
\ Public License instead of this License.
")); +#endif te_license->scrollToAnchor(QString::fromUtf8("top")); show(); }