habe folgendes
Code: Alles auswählen
#include "testapp.h"
#include <QtGui>
#include <QtCore>
#include <QHttp>
TestApp::TestApp(QDialog *parent) : QDialog(parent)
{
setupUi(this);
connect(okButton, SIGNAL (clicked()), this, SLOT(slotClose()));
http = new QHttp(this);
}
TestApp::~TestApp()
{}
void TestApp::slotClose()
{
accept();
}
Im pro File habe ich natuerlich QT +=network angegeben fuers include
Danke,
J.