Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
[SOLVED}applicationDisplayName
-
Hi
If I do not explicitly set the application display name the dialogs in my application only show the dialog title. However if I do this
QApplicaiton::setApplicationDisplayName("Fred");
The dialog's titles are appended with Fred
Why is this?
-
@GrahamL It is for that reason. If your intention is to change the dialog title then use setWindowTitle.
-
Thanks for the explanation