GUI: Make report class destructors virtual.

This commit is contained in:
Kimmo Varis 2009-07-06 12:33:10 +03:00
parent 58c21dde1c
commit 3884b4f997
3 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ class CsvReport : public Report
{ {
public: public:
CsvReport(const QString &filename, QObject * parent = 0); CsvReport(const QString &filename, QObject * parent = 0);
~CsvReport(); virtual ~CsvReport();
/** /**
* @brief Create the report (file). * @brief Create the report (file).

View File

@ -34,7 +34,7 @@ class TxtReport : public Report
{ {
public: public:
TxtReport(const QString &filename, QObject * parent = 0); TxtReport(const QString &filename, QObject * parent = 0);
~TxtReport(); virtual ~TxtReport();
/** /**
* @brief Create the report (file). * @brief Create the report (file).

View File

@ -35,7 +35,7 @@ class XmlReport : public Report
{ {
public: public:
XmlReport(const QString &filename, QObject * parent = 0); XmlReport(const QString &filename, QObject * parent = 0);
~XmlReport(); virtual ~XmlReport();
/** /**
* @brief Create the report (file). * @brief Create the report (file).