~ubuntu-branches/ubuntu/saucy/minitube/saucy-proposed

« back to all changes in this revision

Viewing changes to src/networkaccess.h

  • Committer: Bazaar Package Importer
  • Author(s): Jakob Haufe
  • Date: 2011-04-03 20:38:04 UTC
  • mfrom: (2.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110403203804-0c51jazcjgb86hzt
Tags: 1.4.1-1
* New upstream version
* Disable update check, makes no sense for a packaged version (Closes:
  #619941)

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
public slots:
19
19
    void finished();
20
20
    void requestError(QNetworkReply::NetworkError);
 
21
    void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
 
22
    void readTimeout();
21
23
 
22
24
signals:
23
25
    void data(QByteArray);
26
28
 
27
29
private:
28
30
    QNetworkReply *networkReply;
 
31
    QTimer *readTimeoutTimer;
29
32
 
30
33
};
31
34