Hi (running Kubuntu 7.04 )
I have 2 QLineEdits
Step 1: The first one has the focus, the second one is not enabled.
I enter some text in first one and press the <enter> key which sends the text to a function. This is what I want
Step 2: This function now disables the first QLineEdit and enables the second one and sets the focus there.
I enter some text and press the <enter> key to send this text to another function, but nothing happens.

I am using signal & slots "emit sendInput(QString) ....SLOT(receivedInput(QString)
Where the <QStrings> are the text in the particular widget.

I am totally confused as to why when the first has the text, the <return> works and when the second one has the text, the <enter> does not.

Thanks for help in advance.