Browse Source

Merge branch 'master' of dbv.inf-cv.uni-jena.de:nice/nice-vislearning into ercdevbranch

Johannes Ruehle 11 years ago
parent
commit
e64528cd44
1 changed files with 1 additions and 1 deletions
  1. 1 1
      baselib/ProgressBarQt.cpp

+ 1 - 1
baselib/ProgressBarQt.cpp

@@ -45,7 +45,7 @@ ProgressBarQt::ProgressBarQt ( const std::string & _name, bool _useGraphics )
 
     progressdialog = new QProgressDialog ( "Process at work ...", "Cancel",
                                            0, 100 );
-    layout = new QGridLayout ( dialogwindow, 1, 1 );
+    layout = new QGridLayout ( dialogwindow );
     layout->addWidget ( progressdialog, 0, 0 );
     dialogwindow->setLayout ( layout );
   }