Skip to content

Commit

Permalink
GUI: Make report class destructors virtual.
Browse files Browse the repository at this point in the history
  • Loading branch information
kimmov committed Jul 6, 2009
1 parent 58c21dd commit 3884b4f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gui/csvreport.h
Expand Up @@ -36,7 +36,7 @@ class CsvReport : public Report
{
public:
CsvReport(const QString &filename, QObject * parent = 0);
~CsvReport();
virtual ~CsvReport();

/**
* @brief Create the report (file).
Expand Down
2 changes: 1 addition & 1 deletion gui/txtreport.h
Expand Up @@ -34,7 +34,7 @@ class TxtReport : public Report
{
public:
TxtReport(const QString &filename, QObject * parent = 0);
~TxtReport();
virtual ~TxtReport();

/**
* @brief Create the report (file).
Expand Down
2 changes: 1 addition & 1 deletion gui/xmlreport.h
Expand Up @@ -35,7 +35,7 @@ class XmlReport : public Report
{
public:
XmlReport(const QString &filename, QObject * parent = 0);
~XmlReport();
virtual ~XmlReport();

/**
* @brief Create the report (file).
Expand Down

0 comments on commit 3884b4f

Please sign in to comment.