Hallo all, I am experiencing trouble with using QGridLayout. I create one using the following code: ---- const int NoOfCols=3; layout=new QGridLayout(this, 100 /* 7 */, NoOfCols, 3, 2); if(layout==0) { KMessageBox::sorry (this, i18n("Out of memory."), i18n("General failure.")); ::exit(-1); } for(count=0; countsetColStretch(count, 1); } ---- It is quiet simple - create a grid of 100 rows and 3 columns. Each column should get the same width (exactly). QGridLayout is used as there are some multi-call-widgets in it. The problem is that column 0 (the first one) is layouted much wider than the others. And now the completely weird thing: when changing the loop to for(count=0; count