From 7fc0b02259ccf52674821b8be2c1d93a1116aabc Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sun, 1 Nov 2009 14:11:13 +0000 Subject: [PATCH] - Remove useless function that can cause compilation errors --- src/qtorrenthandle.cpp | 5 ----- src/qtorrenthandle.h | 1 - 2 files changed, 6 deletions(-) diff --git a/src/qtorrenthandle.cpp b/src/qtorrenthandle.cpp index 56ca2a441..bb3ccb7ab 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(); -} - bool QTorrentHandle::super_seeding() const { Q_ASSERT(h.is_valid()); return h.super_seeding(); diff --git a/src/qtorrenthandle.h b/src/qtorrenthandle.h index f034c6070..090a165b2 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;