Added virtual destructor to avoid memory leaks

This commit is contained in:
Christophe Dumez 2010-03-03 13:03:13 +00:00
commit 19368bcefa

View file

@ -92,6 +92,7 @@ public:
enum FileType {STREAM, FOLDER};
RssFile(): QObject() {}
virtual ~RssFile() {};
virtual unsigned int getNbUnRead() const = 0;
virtual FileType getType() const = 0;