Text before editting on QLineEdit
Hi,
I have a QLineEdit with the Signal "editFinished" connected to a Slot. Into the Slot I want to get the text that the QLineEdit was containing before editting it and the new editted text. Is there anyway to get the text before editting it?
Thanks,
Re: Text before editting on QLineEdit
you can try to catch
then do
then get the text and then do
maybe there is better way to realize this approach. ;)
Re: Text before editting on QLineEdit
Hi,
I have used a variable to sotre actual values.
Thanks,