The documentation for the textEdited signal shows the use of a required parameter const QString&
void textEdited (const QString&)
I am unable to get the Signal to work. Perhaps because I do not understand how to use the "const QString&"
Is this a literal copy into the parameter or is it created from something else first?
I have a similar problem with
void itemActivated (QListWidgetItem *)
where it appears they are using a pointer to a QListWidgetItem
Coming from a VB6 background where C++ constructs do not exist.
I could really use some help with this.
Thanks!