diff options
author | mikeh <mikeh@FreeBSD.org> | 2005-12-31 16:53:08 +0000 |
---|---|---|
committer | mikeh <mikeh@FreeBSD.org> | 2005-12-31 16:53:08 +0000 |
commit | 1ebf0a3ac023e3124a4e0960b21d295aa34c4654 (patch) | |
tree | ec1fb77d44d605cf0b0ff4c4d5c48e648ce265db /net-p2p/qtorrent | |
parent | 0443fe2ddef44e8191669372fcc68aa63667f8cb (diff) | |
download | FreeBSD-ports-1ebf0a3ac023e3124a4e0960b21d295aa34c4654.zip FreeBSD-ports-1ebf0a3ac023e3124a4e0960b21d295aa34c4654.tar.gz |
* Patch for open file dialog.
Diffstat (limited to 'net-p2p/qtorrent')
-rw-r--r-- | net-p2p/qtorrent/files/patch-pyqtorrent-torrentmain.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net-p2p/qtorrent/files/patch-pyqtorrent-torrentmain.py b/net-p2p/qtorrent/files/patch-pyqtorrent-torrentmain.py new file mode 100644 index 0000000..d089427 --- /dev/null +++ b/net-p2p/qtorrent/files/patch-pyqtorrent-torrentmain.py @@ -0,0 +1,11 @@ +--- pyqtorrent/torrentmain.py.orig Sat Dec 31 11:43:19 2005 ++++ pyqtorrent/torrentmain.py Sat Dec 31 11:43:31 2005 +@@ -501,7 +501,7 @@ + torrent.start() + + def openFile(self): +- fn = QFileDialog.getOpenFileName(None, "*.torrent") ++ fn = QFileDialog.getOpenFileName("*.torrent") + if fn: + self.newTorrent(str(fn)) + |