owncloudsetuppage.cpp: also rename client/theme/lock-http(s) PNGs to SVG
authorMichael Schuster <michael@schuster.ms>
Sun, 1 Mar 2020 04:12:59 +0000 (05:12 +0100)
committerMichael Schuster <michael@schuster.ms>
Sun, 1 Mar 2020 04:12:59 +0000 (05:12 +0100)
Signed-off-by: Michael Schuster <michael@schuster.ms>
src/gui/wizard/owncloudsetuppage.cpp

index 48f5edba8d6ccc3c7bc587eff35249b2559c4f1f..95510b6967fb69016ed22d45cd0b030d1fa5f907 100644 (file)
@@ -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."));
     }
 }