fixed reversed semantics of queue_up() and queue_down()

This commit is contained in:
Arvid Norberg 2012-05-23 15:18:30 +00:00
parent 24186f219a
commit 1df53aa819
2 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,5 @@
* fixed reversed semantics of queue_up() and queue_down()
* added missing functions to python bindings (file_priority())
* fixed low_prio_disk support on linux
* fixed time critical piece accounting in the request queue

View File

@ -481,13 +481,13 @@ namespace libtorrent
void torrent_handle::queue_position_up() const
{
INVARIANT_CHECK;
TORRENT_ASYNC_CALL(queue_down);
TORRENT_ASYNC_CALL(queue_up);
}
void torrent_handle::queue_position_down() const
{
INVARIANT_CHECK;
TORRENT_ASYNC_CALL(queue_up);
TORRENT_ASYNC_CALL(queue_down);
}
void torrent_handle::queue_position_top() const