mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 09:43:07 -07:00
- Fix compilation with Qt 4.4
- Fix compilation with older boost libraries
This commit is contained in:
parent
88b77a63ed
commit
9323660c79
9 changed files with 68 additions and 32 deletions
11
src/rss.cpp
11
src/rss.cpp
|
@ -29,8 +29,14 @@
|
|||
*/
|
||||
|
||||
#include "rss.h"
|
||||
#include <QTimer>
|
||||
#include <QUrl>
|
||||
|
||||
#ifdef QT_4_5
|
||||
#include <QHash>
|
||||
#else
|
||||
#include <QMap>
|
||||
#define QHash QMap
|
||||
#define toHash toMap
|
||||
#endif
|
||||
|
||||
/** RssFolder **/
|
||||
|
||||
|
@ -673,3 +679,4 @@ void RssStream::processDownloadedFile(QString file_path) {
|
|||
void RssStream::setDownloadFailed(){
|
||||
downloadFailure = true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue