From a92a764c2a58c36e4b24425feff2cf2f81d1973c Mon Sep 17 00:00:00 2001 From: Michael Schuster Date: Sun, 1 Mar 2020 05:12:59 +0100 Subject: [PATCH] owncloudsetuppage.cpp: also rename client/theme/lock-http(s) PNGs to SVG Signed-off-by: Michael Schuster --- src/gui/wizard/owncloudsetuppage.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/wizard/owncloudsetuppage.cpp b/src/gui/wizard/owncloudsetuppage.cpp index 48f5edba8d..95510b6967 100644 --- a/src/gui/wizard/owncloudsetuppage.cpp +++ b/src/gui/wizard/owncloudsetuppage.cpp @@ -178,11 +178,11 @@ void OwncloudSetupPage::slotUrlChanged(const QString &url) } if (!url.startsWith(QLatin1String("https://"))) { - _ui.urlLabel->setPixmap(QPixmap(Theme::hidpiFileName(":/client/theme/lock-http.png"))); + _ui.urlLabel->setPixmap(QPixmap(Theme::hidpiFileName(":/client/theme/lock-http.svg"))); _ui.urlLabel->setToolTip(tr("This url is NOT secure as it is not encrypted.\n" "It is not advisable to use it.")); } else { - _ui.urlLabel->setPixmap(QPixmap(Theme::hidpiFileName(":/client/theme/lock-https.png"))); + _ui.urlLabel->setPixmap(QPixmap(Theme::hidpiFileName(":/client/theme/lock-https.svg"))); _ui.urlLabel->setToolTip(tr("This url is secure. You can use it.")); } }