summary refs log tree commit diff
path: root/src/timeline/InputBar.cpp
diff options
context:
space:
mode:
authorIntegral <integral@member.fsf.org>2024-04-26 13:34:51 -0700
committerIntegral <integral@member.fsf.org>2024-04-26 13:34:51 -0700
commitc890aebf729c9520e141ce09e72d85bffcd900c5 (patch)
treeb1469e9dfc0775badcd00f1382f7bb5753144218 /src/timeline/InputBar.cpp
parentMerge pull request #1708 from NepNep21/windows-image-copying (diff)
downloadnheko-c890aebf729c9520e141ce09e72d85bffcd900c5.tar.xz
refactor: replace QString constructors with QStringLiteral
Diffstat (limited to '')
-rw-r--r--src/timeline/InputBar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timeline/InputBar.cpp b/src/timeline/InputBar.cpp
index e0dfe9b9..1a086c2b 100644
--- a/src/timeline/InputBar.cpp
+++ b/src/timeline/InputBar.cpp
@@ -75,7 +75,7 @@ MediaUpload::thumbnailDataUrl() const
     buffer.open(QIODevice::WriteOnly);
     thumbnail_.save(&buffer, "PNG");
     QString base64 = QString::fromUtf8(byteArray.toBase64());
-    return QString("data:image/png;base64,") + base64;
+    return QStringLiteral("data:image/png;base64,") + base64;
 }
 
 bool