aboutsummaryrefslogtreecommitdiffstats
path: root/src/activitypub/apactivity.cpp
diff options
context:
space:
mode:
authorConfuSomu2024-01-26 13:52:47 -0500
committerConfuSomu2024-01-26 13:52:47 -0500
commitfa9b2130f43547be7e4698b8d95a23155c5d3ee1 (patch)
tree4d97cee4f744ae7de55fc25e24786411deb4f706 /src/activitypub/apactivity.cpp
parentd561873e43de73b5ed48367bed6b6fcdfdefc174 (diff)
downloadActorViewer-fa9b2130f43547be7e4698b8d95a23155c5d3ee1.tar
ActorViewer-fa9b2130f43547be7e4698b8d95a23155c5d3ee1.tar.gz
ActorViewer-fa9b2130f43547be7e4698b8d95a23155c5d3ee1.zip
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.
Diffstat (limited to 'src/activitypub/apactivity.cpp')
-rw-r--r--src/activitypub/apactivity.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/activitypub/apactivity.cpp b/src/activitypub/apactivity.cpp
index 6717731..b44f87a 100644
--- a/src/activitypub/apactivity.cpp
+++ b/src/activitypub/apactivity.cpp
@@ -27,7 +27,7 @@ APActivity::~APActivity() {
}
QString APActivity::get_html_render(HtmlRenderDetails render_info) {
- QString html(get_html_template("apactivity"));
+ QString html(get_html_template(QStringLiteral("apactivity")));
switch (type) {
case APActivityType::CREATE: