A reader asked:
I just want to know, how do I check whether a QLineEdit is empty or not?
The QLineEdit class doesn't have an isEmpty() method which you can call to find out if the line edit is empty, but we don't need one! Instead we can get the current text us...