Use QStringLiteral

This commit is contained in:
Jonas Kvinge
2024-04-09 23:20:26 +02:00
parent 3cfffa5fbb
commit 58944993b8
233 changed files with 3885 additions and 3885 deletions

View File

@@ -46,9 +46,9 @@ class WplParser : public XMLParser {
public:
explicit WplParser(SharedPtr<CollectionBackendInterface> collection_backend, QObject *parent = nullptr);
QString name() const override { return "WPL"; }
QStringList file_extensions() const override { return QStringList() << "wpl"; }
QString mime_type() const override { return "application/vnd.ms-wpl"; }
QString name() const override { return QStringLiteral("WPL"); }
QStringList file_extensions() const override { return QStringList() << QStringLiteral("wpl"); }
QString mime_type() const override { return QStringLiteral("application/vnd.ms-wpl"); }
bool load_supported() const override { return true; }
bool save_supported() const override { return true; }