Navigation Menu

Skip to content

Commit

Permalink
Fix build warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed May 9, 2018
1 parent 819ae6f commit cbbaf9c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/qgsnetworkcontentfetcherregistry.h
Expand Up @@ -106,10 +106,10 @@ class CORE_EXPORT QgsFetchedContent : public QObject

private:
void emitFetched() {emit fetched();}
QTemporaryFile *mFile;
QString mFilePath = QStringLiteral();
QTemporaryFile *mFile = nullptr;
QString mFilePath;
QgsNetworkContentFetcherTask *mFetchingTask = nullptr;
ContentStatus mStatus;
ContentStatus mStatus = NotStarted;
QNetworkReply::NetworkError mError = QNetworkReply::NoError;

// allow modification of task and file from main class
Expand Down

0 comments on commit cbbaf9c

Please sign in to comment.