From d3908db2c9441d22acc31b53393b557821fab99e Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Thu, 25 Jul 2024 19:29:12 -0400 Subject: [PATCH] Fix Carl's avatar in the about data This is supposed to be a QUrl to catch the correct overload. --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 5164b5d77..30cbeb60e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -148,7 +148,7 @@ int main(int argc, char *argv[]) i18n("Maintainer"), QStringLiteral("carl@carlschwan.eu"), QStringLiteral("https://carlschwan.eu"), - QStringLiteral("https://carlschwan.eu/avatar.png")); + QUrl(QStringLiteral("https://carlschwan.eu/avatar.png"))); about.addAuthor(i18n("Tobias Fella"), i18n("Maintainer"), QStringLiteral("tobias.fella@kde.org"), QStringLiteral("https://tobiasfella.de")); about.addAuthor(i18n("James Graham"), i18n("Maintainer"), QStringLiteral("james.h.graham@protonmail.com")); about.addCredit(i18n("Black Hat"), i18n("Original author of Spectral"), QStringLiteral("bhat@encom.eu.org"));