diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-03-26 23:16:08 +0100 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-03-27 20:59:56 +0200 |
commit | 6054abaffb0af036a62b99d4b6990228b3cda3f1 (patch) | |
tree | c7815403db24228d65de9edbe88fe9fd70f1ed66 /launcher/ui | |
parent | 3a1feed7230abc7e55de86e4aa2a9470e3682f0e (diff) | |
download | PrismLauncher-6054abaffb0af036a62b99d4b6990228b3cda3f1.tar.gz PrismLauncher-6054abaffb0af036a62b99d4b6990228b3cda3f1.tar.bz2 PrismLauncher-6054abaffb0af036a62b99d4b6990228b3cda3f1.zip |
fix(credits): wrap UTF-8 text with QString
Diffstat (limited to 'launcher/ui')
-rw-r--r-- | launcher/ui/dialogs/AboutDialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/dialogs/AboutDialog.cpp b/launcher/ui/dialogs/AboutDialog.cpp index 81d1d7f7..5164551e 100644 --- a/launcher/ui/dialogs/AboutDialog.cpp +++ b/launcher/ui/dialogs/AboutDialog.cpp @@ -69,7 +69,7 @@ QString getCreditsHtml() //: %1 is the name of the launcher, determined at build time, e.g. "PolyMC Developers" stream << "<h3>" << QObject::tr("%1 Developers", "About Credits").arg("MultiMC") << "</h3>\n"; stream << "<p>Andrew Okin <<a href='mailto:forkk@forkk.net'>forkk@forkk.net</a>></p>\n"; - stream << "<p>Petr Mrázek <<a href='mailto:peterix@gmail.com'>peterix@gmail.com</a>></p>\n"; + stream << QString("<p>Petr Mrázek <<a href='mailto:peterix@gmail.com'>peterix@gmail.com</a>></p>\n"); stream << "<p>Sky Welch <<a href='mailto:multimc@bunnies.io'>multimc@bunnies.io</a>></p>\n"; stream << "<p>Jan (02JanDal) <<a href='mailto:02jandal@gmail.com'>02jandal@gmail.com</a>></p>\n"; stream << "<p>RoboSky <<a href='https://twitter.com/RoboSky_'>@RoboSky_</a>></p>\n"; |