From 7a7fca0d0c6657605be5c9aed89b9911bb0c1475 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sun, 1 Nov 2009 14:11:28 +0000 Subject: [PATCH] - Remove useless function that can cause compilation error. --- src/qtorrenthandle.cpp | 5 ----- src/qtorrenthandle.h | 1 - 2 files changed, 6 deletions(-) diff --git a/src/qtorrenthandle.cpp b/src/qtorrenthandle.cpp index e4782061c..e7c284d56 100644 --- a/src/qtorrenthandle.cpp +++ b/src/qtorrenthandle.cpp @@ -163,11 +163,6 @@ QString QTorrentHandle::save_path() const { return misc::toQString(h.save_path().string()); } -fs::path QTorrentHandle::save_path_boost() const { - Q_ASSERT(h.is_valid()); - return h.save_path(); -} - QStringList QTorrentHandle::url_seeds() const { Q_ASSERT(h.is_valid()); QStringList res; diff --git a/src/qtorrenthandle.h b/src/qtorrenthandle.h index 7e06d190e..7abdfad19 100644 --- a/src/qtorrenthandle.h +++ b/src/qtorrenthandle.h @@ -81,7 +81,6 @@ class QTorrentHandle { int num_incomplete() const; void scrape_tracker() const; QString save_path() const; - fs::path save_path_boost() const; QStringList url_seeds() const; size_type actual_size() const; int download_limit() const;