Aquarius_Girl
Aquarius_Girl

Reputation: 22906

error: QNetworkReply: No such file or directory

Something is missing from the pro file it seems:

TEMPLATE = app
TARGET = 
DEPENDPATH += .
INCLUDEPATH += .

# Input
HEADERS += hello.h
SOURCES += hello.cpp
QT += webkit

Or there is some other problem?

$qmake -v
QMake version 2.01a
Using Qt version 4.7.0 in /opt/qtsdk-2010.05/qt/lib

Upvotes: 3

Views: 3152

Answers (1)

Aquarius_Girl
Aquarius_Girl

Reputation: 22906

This line was missing: QT += network in the .pro file.

Upvotes: 7

Related Questions