How do I create a QList of QList<QString>?
Solved
General and Desktop
-
declare it as
QList<QList<QString>> abc;
QList<QStringList> xyz;Does it help ?
-
hi @Dr.-No,
and what is your question? The code you posted is correct.
Just note, that for older compilers you need to add a space between the closing
>
.Regards
-
@Dr.-No if your issue is solved, don't forget to mark your post as such. Thanks
-
@Dr.-No if your issue is solved, don't forget to mark your post as such. Thanks
@Pablo-J.-Rogina Done!