Skip to content

Commit

Permalink
Fix building with older Qt
Browse files Browse the repository at this point in the history
  • Loading branch information
KitsuneRal committed Aug 28, 2024
1 parent 6ef4588 commit 6ba6986
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Quotient/settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class QUOTIENT_API SettingsGroup : public Settings {
Q_INVOKABLE void remove(const QString& key);

private:
QString fullPath(QAnyStringView key) const { return groupPath % u'/' % key.toString(); }
QString fullPath(QAnyStringView key) const { return groupPath % u"/"_s % key.toString(); }

QString groupPath;
};
Expand Down

0 comments on commit 6ba6986

Please sign in to comment.