I have a user that is not getting the minimize or maximize buttons on the window title bar (all he has is the close button). The constructor for the dialog looks like this:

Qt Code:
  1. lprofMain::lprofMain( QWidget* parent)
  2. : lprofMainBase( parent, "", 0,
  3. Qt::WType_TopLevel | Qt::WStyle_SysMenu | Qt::WStyle_MinMax )
To copy to clipboard, switch view to plain text mode 

Qt::WStyle_SysMenu | Qt::WStyle_MinMax were added a long time ago to get these controls working on Windows and on my Linux box I am seeing the minimize and maximize controls. So I don't understand why the user is not.

Anyone have any ideas?

This is a Qt3 application.