How can i remove a QString from QStringList.
stringList.remove(); is not working. It is giving a error that remove is not a member of QStringList.
Printable View
How can i remove a QString from QStringList.
stringList.remove(); is not working. It is giving a error that remove is not a member of QStringList.
Use QList::removeAt() or QList::removeAll(). And read the docs next time if you can't guess the method name correctly.
or use some IDE which has code completer instead of plain old text editor.