Is there still qSort in qt6 to sort QStringList? If it is obsolete, is there a replacement function?
Solved
General and Desktop
-
Is there still qSort in qt6 to sort QStringList? If it is obsolete, is there a replacement function?
-
@angelyouyou said in Is there still qSort in qt6 to sort QStringList? If it is obsolete, is there a replacement function?:
If it is obsolete, is there a replacement function?
Reading the documentation helps:
"Use std::sort instead."
-
OK.Thanks.