Made Report::close() non-virtual, it is not overriden and it is called from the Report destructor
This commit is contained in:
parent
1046ca2120
commit
b4583d6e37
|
@ -32,7 +32,6 @@
|
||||||
*/
|
*/
|
||||||
class Report : public QObject {
|
class Report : public QObject {
|
||||||
public:
|
public:
|
||||||
|
|
||||||
enum Type {
|
enum Type {
|
||||||
TXT,
|
TXT,
|
||||||
XMLV2,
|
XMLV2,
|
||||||
|
@ -57,7 +56,7 @@ public:
|
||||||
/**
|
/**
|
||||||
* @brief Close the report (file).
|
* @brief Close the report (file).
|
||||||
*/
|
*/
|
||||||
virtual void close();
|
void close();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Write report header.
|
* @brief Write report header.
|
||||||
|
|
Loading…
Reference in New Issue