equal
deleted
inserted
replaced
46 web = new DataBrowser(this); |
46 web = new DataBrowser(this); |
47 connect(web, SIGNAL(anchorClicked(QUrl)), this, SLOT(request(const QUrl&))); |
47 connect(web, SIGNAL(anchorClicked(QUrl)), this, SLOT(request(const QUrl&))); |
48 web->setOpenLinks(false); |
48 web->setOpenLinks(false); |
49 pageLayout->addWidget(web, 0, 0, 1, 3); |
49 pageLayout->addWidget(web, 0, 0, 1, 3); |
50 |
50 |
51 progressBarsLayout = new QVBoxLayout(this); |
51 progressBarsLayout = new QVBoxLayout(); |
52 pageLayout->addLayout(progressBarsLayout, 1, 0, 1, 3); |
52 pageLayout->addLayout(progressBarsLayout, 1, 0, 1, 3); |
53 |
53 |
54 fetchList(); |
54 fetchList(); |
55 } |
55 } |
56 |
56 |