~ubuntu-branches/ubuntu/natty/kde4libs/natty-proposed

« back to all changes in this revision

Viewing changes to kio/kio/accessmanagerreply_p.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell, Jonathan Riddell, Scott Kitterman
  • Date: 2011-01-21 11:32:24 UTC
  • mfrom: (1.14.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110121113224-c9tebdkklj5u3awu
Tags: 4:4.6.0-0ubuntu1~ppa1
[ Jonathan Riddell ]
* New upstream release
* Reluctantly add kcm_ssl to kdelibs5-plugins, this should be in kdebase

[ Scott Kitterman ]
* Update libkatepartinterfaces4.symbols and libkdecore5.symbols for 4.5.95
  and confirm symbols on all architectures with pkgkde-symbolshelper
  - Thanks to Jonathan Thomas for verifying the missing symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
    virtual qint64 bytesAvailable() const;
58
58
    virtual void abort();
59
59
 
 
60
    void setIgnoreContentDisposition(bool on);
60
61
    void setStatus(const QString& message, QNetworkReply::NetworkError);
 
62
    void putOnHold();
61
63
 
62
64
protected:
63
65
    virtual qint64 readData(char *data, qint64 maxSize);
73
75
private:
74
76
    QByteArray m_data;
75
77
    bool m_metaDataRead;
 
78
    bool m_ignoreContentDisposition;
76
79
    QPointer<KIO::SimpleJob> m_kioJob;
77
80
};
78
81