diff options
author | Markus Brueffer <markus@FreeBSD.org> | 2007-10-31 08:21:44 +0800 |
---|---|---|
committer | Markus Brueffer <markus@FreeBSD.org> | 2007-10-31 08:21:44 +0800 |
commit | 42696a0192983686fee819439098591b297ffa2b (patch) | |
tree | cc3050d9a09af2ca5d887b8459db493de132e5e9 /net-p2p/ktorrent/files | |
parent | 3f80fae9c66cece63fb2a6e11a0fbca8677e131e (diff) | |
download | freebsd-ports-gnome-42696a0192983686fee819439098591b297ffa2b.tar.gz freebsd-ports-gnome-42696a0192983686fee819439098591b297ffa2b.tar.zst freebsd-ports-gnome-42696a0192983686fee819439098591b297ffa2b.zip |
- Add patch to fix broken preexisting file check, which can result in files
being deleted when the user deselects them and they already exist
(KDE BUG 150563).
- Bump PORTREVISION
PR: ports/117654
Submitted by: Shane Bell <decept0@gmail.com>
Approved by: portmgr (erwin)
Diffstat (limited to 'net-p2p/ktorrent/files')
-rw-r--r-- | net-p2p/ktorrent/files/patch-apps-ktorrent-fileselectdlg.cpp | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/net-p2p/ktorrent/files/patch-apps-ktorrent-fileselectdlg.cpp b/net-p2p/ktorrent/files/patch-apps-ktorrent-fileselectdlg.cpp new file mode 100644 index 000000000000..f57f053e75c9 --- /dev/null +++ b/net-p2p/ktorrent/files/patch-apps-ktorrent-fileselectdlg.cpp @@ -0,0 +1,34 @@ +--- apps/ktorrent/fileselectdlg.cpp 2007/10/07 11:30:13 722461 ++++ apps/ktorrent/fileselectdlg.cpp 2007/10/07 11:32:52 722462 +@@ -94,11 +94,20 @@ + void FileSelectDlg::accept() + { + QStringList pe_ex; ++ ++ QString dn = m_downloadLocation->url(); ++ if (!dn.endsWith(bt::DirSeparator())) ++ dn += bt::DirSeparator(); + + for (Uint32 i = 0;i < tc->getNumFiles();i++) + { + kt::TorrentFileInterface & file = tc->getTorrentFile(i); + ++ // check for preexsting files ++ QString path = dn + tc->getStats().torrent_name + bt::DirSeparator() + file.getPath(); ++ if (bt::Exists(path)) ++ file.setPreExisting(true); ++ + if (file.doNotDownload() && file.isPreExistingFile()) + { + // we have excluded a preexsting file +@@ -136,10 +145,7 @@ + } + + //Setup custom download location +- QString dn = m_downloadLocation->url(); + QString ddir = tc->getDataDir(); +- if (!dn.endsWith(bt::DirSeparator())) +- dn += bt::DirSeparator(); + if (!ddir.endsWith(bt::DirSeparator())) + ddir += bt::DirSeparator(); + |