Changes: Set explicitly background color for performance test application

RevBy: TrustMe
pull/1/head
Alexey Shilov 14 years ago committed by Marek Ruszczak
parent 8e7c229371
commit 53389b9f99

@ -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