From 5373628af58a988498f38e09a99afb769878b044 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Mon, 23 Oct 2006 21:51:21 +0000 Subject: [PATCH] - .savepath files were not always removed --- src/GUI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI.cpp b/src/GUI.cpp index a7b5fda42..da07668b9 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -1270,7 +1270,7 @@ void GUI::deleteSelection(){ torrentBackup.remove(fileName+".paused"); torrentBackup.remove(fileName+".incremental"); torrentBackup.remove(fileName+".pieces"); - torrentBackup.remove(fileName+".filepath"); + torrentBackup.remove(fileName+".savepath"); // Update info bar setInfoBar("'" + fileName +"' "+tr("removed.", " removed.")); --nbTorrents;