1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-02 18:04:32 +00:00

Fix compilation error (closes #675444)

This commit is contained in:
Christophe Dumez 2010-11-15 17:15:50 +00:00
parent 6a689e83c4
commit df04427c6a

View File

@ -185,9 +185,6 @@ protected slots:
void cleanUpAutoRunProcess(int); void cleanUpAutoRunProcess(int);
void mergeTorrents(QTorrentHandle h_ex, boost::intrusive_ptr<torrent_info> t); void mergeTorrents(QTorrentHandle h_ex, boost::intrusive_ptr<torrent_info> t);
void exportTorrentFile(QTorrentHandle h); void exportTorrentFile(QTorrentHandle h);
#if LIBTORRENT_VERSION_MINOR < 15
void saveDHTEntry();
#endif
signals: signals:
void addedTorrent(const QTorrentHandle& h); void addedTorrent(const QTorrentHandle& h);
@ -209,6 +206,11 @@ signals:
void alternativeSpeedsModeChanged(bool alternative); void alternativeSpeedsModeChanged(bool alternative);
void recursiveTorrentDownloadPossible(QTorrentHandle &h); void recursiveTorrentDownloadPossible(QTorrentHandle &h);
private:
#if LIBTORRENT_VERSION_MINOR < 15
void saveDHTEntry();
#endif
private: private:
// Bittorrent // Bittorrent
session *s; session *s;