Skip to content

Commit

Permalink
Merge pull request supercollider#1223 from ventosus/patch-QNetworkReq…
Browse files Browse the repository at this point in the history
…uest

Fix "QNetworkRequest header not found".
  • Loading branch information
danstowell committed Mar 11, 2015
2 parents e7f9aca + f0f6fea commit 595b956
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion QtCollider/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ else()
set(required_qt_version 4.7)
endif()

find_package (Qt4 ${required_qt_version} COMPONENTS QtCore QtGui QtWebKit)
find_package (Qt4 ${required_qt_version} COMPONENTS QtCore QtGui QtWebKit QtNetwork)

if (NOT QT4_FOUND)
set(FIND_QT_ERROR_MSG "You are trying to compile with Qt GUI support, but a suitable version of Qt or one of its components could not be found:")
Expand Down
4 changes: 2 additions & 2 deletions QtCollider/QtDownload.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@

#include <QObject>
#include <QString>
#include <QtNetwork/QNetworkAccessManager>
#include <QtNetwork/QNetworkReply>
#include <QNetworkAccessManager>
#include <QNetworkReply>


class QtDownload : public QObject {
Expand Down

0 comments on commit 595b956

Please sign in to comment.