Browse Source

- Another attempt to fix compilation on FreeBSD

- Fixed IP Filter preferences (closes #147532)
adaptive-webui-19844
Christophe Dumez 17 years ago
parent
commit
4f25e6c769
  1. 6
      TODO
  2. 1
      src/bittorrent.cpp
  3. 1
      src/bittorrent.h
  4. 1
      src/options_imp.cpp

6
TODO

@ -57,6 +57,6 @@ @@ -57,6 +57,6 @@
- Translations update (IN PROGRESS)
- Make use of total_wanted
rc2->rc3 changelog:
- BUGFIX: Fixed a proxy problem causing connections to be rejected by trackers
- BUGFIX: Fixed compilation problem on FreeBSD
rc3->rc4 changelog:
- BUGFIX: Fixed ip filter preferences (couldn't enable it)
- BUGFIX: Fixed a compilation problem on FreeBSD

1
src/bittorrent.cpp

@ -35,7 +35,6 @@ @@ -35,7 +35,6 @@
#include <libtorrent/bencode.hpp>
#include <libtorrent/identify_client.hpp>
#include <libtorrent/alert_types.hpp>
#include <libtorrent/ip_filter.hpp>
#include <libtorrent/torrent_info.hpp>
#include <boost/filesystem/exception.hpp>

1
src/bittorrent.h

@ -27,6 +27,7 @@ @@ -27,6 +27,7 @@
#include <QStringList>
#include <libtorrent/session.hpp>
#include <libtorrent/ip_filter.hpp>
#include "qtorrenthandle.h"
using namespace libtorrent;

1
src/options_imp.cpp

@ -565,7 +565,6 @@ void options_imp::loadOptions(){ @@ -565,7 +565,6 @@ void options_imp::loadOptions(){
processFilterFile(textFilterPath->text());
} else {
enableFilter(0); // Disable
filterBox->setEnabled(false);
}
// End IP Filter
settings.endGroup();

Loading…
Cancel
Save