From fa9b2130f43547be7e4698b8d95a23155c5d3ee1 Mon Sep 17 00:00:00 2001 From: ConfuSomu Date: Fri, 26 Jan 2024 13:52:47 -0500 Subject: Use QStringLiteral in some places This should provide a light performance improvement as the QString is built at compile time, with the generated data being stored in the read-only segment of the built object file. --- src/activitypub/appost.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/activitypub/appost.cpp') diff --git a/src/activitypub/appost.cpp b/src/activitypub/appost.cpp index 87d6f08..c1f78d4 100644 --- a/src/activitypub/appost.cpp +++ b/src/activitypub/appost.cpp @@ -42,7 +42,7 @@ QString APPost::get_html_status_languages() { } QString APPost::get_html_render(HtmlRenderDetails render_info) { - QString html(get_html_template("appost")); + QString html(get_html_template(QStringLiteral("appost"))); if (published.isValid()) { // Using QLocale::toString() is forward compatible with Qt 6 as QDateTime::toString() will not return anymore a string in the system locale. -- cgit v1.2.3-54-g00ecf