I am working in c++ Qt Creator. I have a form with labels and lineEdits. I would like to set as default in each lineEdit a text. It would be more efficient than writing the same stuff each time I run the application. Can you please tell me how to do this?
I am working in c++ Qt Creator. I have a form with label s
Share
Use
You can set it in the constructor or maybe set all those defaults in an
init()function.