Great!
I was able to implement sizeHint like you suggested without the compiler complaining about it (for the first time). If I want to resize the main window, do I just do this?
adjustSize();
adjustSize();
To copy to clipboard, switch view to plain text mode
or
adjustSize();
QSize sizeHint();
adjustSize();
To copy to clipboard, switch view to plain text mode
Both of these only work abot half the time.
My question is how does another function that uses sizeHint() actually know to invoke the sizeHint() function? How do you call sizeHint() when you want to use it for adjustSize()?
Bookmarks