From ea433c06192d0a12cd50b7c5cb3b9d408a190223 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sun, 17 Apr 2011 10:36:50 +0000 Subject: [PATCH] Fix error in last commit --- src/qtlibtorrent/qtorrenthandle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qtlibtorrent/qtorrenthandle.cpp b/src/qtlibtorrent/qtorrenthandle.cpp index b5a9c1488..f5b0066c1 100644 --- a/src/qtlibtorrent/qtorrenthandle.cpp +++ b/src/qtlibtorrent/qtorrenthandle.cpp @@ -471,7 +471,7 @@ bool QTorrentHandle::is_auto_managed() const { #endif } -bool is_sequential_download() const { +bool QTorrentHandle::is_sequential_download() const { #if LIBTORRENT_VERSION_MINOR > 15 torrent_status status = torrent_handle::status(0x0); return status.sequential_download;