Oops, missing part of tabtest.cpp:
@
void TabTest::update_test_label() {
int i = rand() % 100 + 1;
QString s = QString("%1").arg(i,3);
testlabel->setText( s );
i = rand() % 100 + 1;
s = QString("%1").arg(i,3);
testlabel2->setText( s );
i = rand() % 100 + 1;
s = QString("%1").arg(i,3);
testlabel3->setText( s );
i = rand() % 100 + 1;
s = QString("%1").arg(i,3);
testlabel4->setText( s );
i = rand() % 100 + 1;
s = QString("%1").arg(i,3);
testlabel5->setText( s );
}
@