diff options
author | Ahmad Samir <a.samirh78@gmail.com> | 2021-08-18 15:26:07 +0200 |
---|---|---|
committer | Ahmad Samir <a.samirh78@gmail.com> | 2021-08-18 15:41:16 +0200 |
commit | 4f8ed9b7815584afc59a9ea73bb401d9b4006d68 (patch) | |
tree | 5ac5cd59212c11e07fcb5574c2ed57f6af3d9281 /src/gui/kconfigloaderhandler_p.h | |
parent | 98e74c201c760c17fd6b7143f649ae42d3e0667f (diff) | |
download | kconfig-4f8ed9b7815584afc59a9ea73bb401d9b4006d68.tar.gz kconfig-4f8ed9b7815584afc59a9ea73bb401d9b4006d68.tar.bz2 |
Port to QStrinView
Now that KF requires Qt 5.15.2; this basically reverts commit 2e8742e64fc0
with some trivial changes.
NO_CHANGELOG
Diffstat (limited to 'src/gui/kconfigloaderhandler_p.h')
-rw-r--r-- | src/gui/kconfigloaderhandler_p.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/kconfigloaderhandler_p.h b/src/gui/kconfigloaderhandler_p.h index bc199e0e..297e5462 100644 --- a/src/gui/kconfigloaderhandler_p.h +++ b/src/gui/kconfigloaderhandler_p.h @@ -17,9 +17,8 @@ public: bool parse(QIODevice *input); - bool startElement(const QStringRef &localName, const QXmlStreamAttributes &attrs); - bool endElement(const QStringRef &localName); - bool characters(const QStringRef &ch); + void startElement(const QStringView localName, const QXmlStreamAttributes &attrs); + void endElement(const QStringView localName); private: void addItem(); |