hi, i am trying to make a simple application with 2 QLineEdits.... where i type text in one, and automatically in the other it appears Capitalized....
connect(lineEditOriginalText, SIGNAL(textChanged(QString&)), this, SLOT(functionCaseChange(QString&)));
connect(lineEditOriginalText, SIGNAL(textEdited(QString&)), this, SLOT(functionCaseChange(QString&)));
connect(lineEditOriginalText, SIGNAL(textChanged(QString&)), this, SLOT(functionCaseChange(QString&)));
connect(lineEditOriginalText, SIGNAL(textEdited(QString&)), this, SLOT(functionCaseChange(QString&)));
To copy to clipboard, switch view to plain text mode
why both of these connects don't work....???
thanks in advance for your help...
Bookmarks