|
From: Herton R. K. <he...@us...> - 2005-06-23 19:29:49
|
Update of /cvsroot/kimageprocess/kimageprocess/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12148 Modified Files: ktprogressbar.cpp Log Message: - Fixed displaying of progress bar form when creating form. Index: ktprogressbar.cpp =================================================================== RCS file: /cvsroot/kimageprocess/kimageprocess/src/ktprogressbar.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ktprogressbar.cpp 23 Jun 2005 04:26:46 -0000 1.1 +++ ktprogressbar.cpp 23 Jun 2005 19:29:40 -0000 1.2 @@ -28,7 +28,10 @@ KTProgressBar::KTProgressBar(QWidget *parent, const char *name) : QFrame(parent, name) { + QHBoxLayout *layout = new QHBoxLayout(this); + layout->setAutoAdd(true); m_ui = new ProgressBarUI(this); + m_ui->show(); } void KTProgressBar::startAction(int progressSteps, const QString& initialText) |