equal
deleted
inserted
replaced
22 |
22 |
23 #include "netwwwwidget.h" |
23 #include "netwwwwidget.h" |
24 #include "hwconsts.h" |
24 #include "hwconsts.h" |
25 |
25 |
26 HWNetWwwWidget::HWNetWwwWidget(QWidget* parent) : |
26 HWNetWwwWidget::HWNetWwwWidget(QWidget* parent) : |
27 HWNetServersWidget(parent), mainLayout(this) |
27 HWNetServersWidget(parent) |
28 { |
28 { |
29 http = new QHttp(this); |
29 http = new QHttp(this); |
30 http->setHost("www.hedgewars.org", 80); |
30 http->setHost("www.hedgewars.org", 80); |
31 connect(http, SIGNAL(requestFinished(int, bool)), this, SLOT(onClientRead(int, bool))); |
31 connect(http, SIGNAL(requestFinished(int, bool)), this, SLOT(onClientRead(int, bool))); |
32 } |
32 } |