Hello, i got a problem with QProgressDialog, i'd like to show quickly the QProgressDialog but i get this error:
Qt Code:
  1. /usr/local/Trolltech/Qt-4.3.2-commercial-static/include/QtGui/qprogressdialog.h:101: error: ‘void QProgressDialog::forceShow()’ is protected
To copy to clipboard, switch view to plain text mode 
here down the code
Qt Code:
  1. QProgressDialog progress ( tr ( "Sending configuration..." ) , tr ( "Abort" ) , 0 , commandNumber , this );
  2. progress.setWindowTitle ( tr ( "Sending configuration..." ) );
  3. progress.setWindowModality ( Qt::NonModal );
  4. progress.setMinimumDuration(0);
  5. progress.forceShow(); // <-- error forceShow() is protected
To copy to clipboard, switch view to plain text mode 
thx