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 {
|
||||
public:
|
||||
|
||||
enum Type {
|
||||
TXT,
|
||||
XMLV2,
|
||||
|
@ -57,7 +56,7 @@ public:
|
|||
/**
|
||||
* @brief Close the report (file).
|
||||
*/
|
||||
virtual void close();
|
||||
void close();
|
||||
|
||||
/**
|
||||
* @brief Write report header.
|
||||
|
|
Loading…
Reference in New Issue