QTfrontend/pagedata.cpp
changeset 5769 09aca6e1317a
parent 5768 852ba8f5685c
child 5999 dad168522e3b
child 6009 14f6fc9869f2
equal deleted inserted replaced
5768:852ba8f5685c 5769:09aca6e1317a
    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