diff options
| author | 2008-09-12 16:23:27 +0000 | |
|---|---|---|
| committer | 2008-09-12 16:23:27 +0000 | |
| commit | be39d41e086d81a73c0bfa24c439f062d3fcf1ed (patch) | |
| tree | f09509a55fc9c2c49f405981c849f8b1ea855546 /src/modules/objects/class_http.h | |
| parent | fixed compilation (diff) | |
| download | KVIrc-be39d41e086d81a73c0bfa24c439f062d3fcf1ed.tar.gz KVIrc-be39d41e086d81a73c0bfa24c439f062d3fcf1ed.tar.bz2 KVIrc-be39d41e086d81a73c0bfa24c439f062d3fcf1ed.zip | |
compilation fixes (objects module)
fixes for filetransferwindow
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2443 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/objects/class_http.h')
| -rw-r--r-- | src/modules/objects/class_http.h | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/src/modules/objects/class_http.h b/src/modules/objects/class_http.h index 197250117..9430c194d 100644 --- a/src/modules/objects/class_http.h +++ b/src/modules/objects/class_http.h @@ -30,6 +30,8 @@ #include <QHttp> #include <QFile> #include <QHash> +#include <QSslError> + class KviKvsObject_http : public KviKvsObject { Q_OBJECT @@ -65,19 +67,19 @@ protected: #endif protected slots: - void slotRequestFinished ( int id, bool error );
- void slotDone (bool error );
- void slotRequestStarted ( int id );
- void slotDataSendProgress ( int done, int total );
- void slotDataReadProgress ( int done, int total );
+ void slotRequestFinished ( int id, bool error ); + void slotDone (bool error ); + void slotRequestStarted ( int id ); + void slotDataSendProgress ( int done, int total ); + void slotDataReadProgress ( int done, int total ); #ifndef QT_NO_OPENSSL - void slotSslErrors(QList<QSslError>);
-#endif
- void slotResponseHeaderReceived(const QHttpResponseHeader &r);
- void slotReadyRead(const QHttpResponseHeader &r);
- void slotStateChanged ( int state);
-
-
+ void slotSslErrors(QList<QSslError>); +#endif + void slotResponseHeaderReceived(const QHttpResponseHeader &r); + void slotReadyRead(const QHttpResponseHeader &r); + void slotStateChanged ( int state); + + }; #endif //_CLASS_HTTP_H_ |
