I put this code to action and I got the following error on the command line:
I looked in the docs and QlineEdit should have this signal. What could be missing?no such signal QlineEdit::textEdited()
I put this code to action and I got the following error on the command line:
I looked in the docs and QlineEdit should have this signal. What could be missing?no such signal QlineEdit::textEdited()
Looks like a parameter is missing. So it should be:
Qt Code:
connect( ui.vendorname, SIGNAL( textEdited( const QString& ) ), this, SLOT( colorbackground() ) );To copy to clipboard, switch view to plain text mode
J-P Nurmi
tpf80 (21st June 2007)
yes this was the issue.. so silly of me to forget that parameter! Thanks so much for your help!
Bookmarks