From bca92936a6c6b09e1341f5b3831cca328b715df6 Mon Sep 17 00:00:00 2001 From: Flavio Tordini Date: Wed, 21 Oct 2009 11:18:46 +0200 Subject: [PATCH] Credits for Windows build --- src/AboutView.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/AboutView.cpp b/src/AboutView.cpp index 16a8d28..4259049 100644 --- a/src/AboutView.cpp +++ b/src/AboutView.cpp @@ -33,6 +33,9 @@ AboutView::AboutView(QWidget *parent) : QWidget(parent) { + tr("Icon designed by %1.").arg("Sebastian Kraft") + "
" + tr("Compact mode contributed by %1.").arg("Stefan Brück") + "
" + tr("HTTP proxy support contributed by %1.").arg("Kiwamu Okabe") +#ifdef Q_WS_WIN + + "
" + tr("Windows version built by %1").arg("Marco Di Antonio") +#endif + "

" "

" + tr("Translated by %1").arg("Nikita Lyalin (ru_RU), " @@ -71,15 +74,12 @@ AboutView::AboutView(QWidget *parent) : QWidget(parent) { } void AboutView::paintEvent(QPaintEvent * /*event*/) { - - QPainter painter(this); - #ifdef Q_WS_MAC + QPainter painter(this); QLinearGradient linearGrad(0, 0, 0, height()); QPalette palette; linearGrad.setColorAt(0, palette.color(QPalette::Light)); linearGrad.setColorAt(1, palette.color(QPalette::Midlight)); painter.fillRect(0, 0, width(), height(), QBrush(linearGrad)); #endif - } -- 2.39.5