lxqt / libqtxdg

Qt implementation of freedesktop.org xdg specs
https://lxqt.github.io
GNU Lesser General Public License v2.1
72 stars 35 forks source link

Port QStringRef to QStringView #239

Closed luis-pereira closed 3 years ago

luis-pereira commented 3 years ago

Qt6 dropped QStringRef. Note: QStringViews should be passed by value, not by reference-to-const. Passing a reference-to-const, compiles and works, but is slower.

tsujan commented 3 years ago

GTM