diff options
author | Timo Eskola <timo@tolleri.net> | 2018-09-07 21:47:55 +0300 |
---|---|---|
committer | Timo Eskola <timo@tolleri.net> | 2018-09-07 21:47:55 +0300 |
commit | 1319c9dfac793756aa84fa584fbe65908dd374fa (patch) | |
tree | 692b2ee93e2a771287fac6b6a3e5633e7451813a /recording.h | |
parent | b137e467c469853d6ddd6fa5200663e113cba9ac (diff) | |
download | vdr-plugin-duplicates-1319c9dfac793756aa84fa584fbe65908dd374fa.tar.gz vdr-plugin-duplicates-1319c9dfac793756aa84fa584fbe65908dd374fa.tar.bz2 |
Fixed duplicate recording count after deletion and hiding.
Diffstat (limited to 'recording.h')
-rw-r--r-- | recording.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recording.h b/recording.h index cb08e2e..18a666f 100644 --- a/recording.h +++ b/recording.h @@ -45,7 +45,7 @@ public: class cDuplicateRecordings : public cList<cDuplicateRecording> { public: cDuplicateRecordings(void); - void RemoveDeleted(void); + void Remove(std::string fileName); }; extern cDuplicateRecordings DuplicateRecordings; |