Changes: Set explicitly background color for performance test application

RevBy: TrustMe
pull/1/head
Alexey Shilov 14 years ago
parent 0c244451de
commit 0718cddc3a

@ -27,6 +27,8 @@
#include <MExport>
#include <QFile>
#include <QBrush>
#include <QColor>
#include <sys/time.h>
#include <exception>
@ -130,6 +132,10 @@ int main(int argc, char **argv) {
p.appear();
timestamp("page.appear() called");
//set background color
QBrush brush(QColor(0, 115, 125, 255));
w->setBackgroundBrush(brush);
w->show();
timestamp("w->show() called");
}

Loading…
Cancel
Save