summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@qt.io>2019-02-26 09:33:26 +0100
committerKai Koehne <kai.koehne@qt.io>2019-02-26 12:17:55 +0000
commitbfb970a5ae603f42b73870eb88fe486cf5315a46 (patch)
tree4305a2fde9580e7b05ad49ad7c7e0896760fee5a
parent272b81e7c29887263d03cf6366db70c5650e6b36 (diff)
downloadqttools-bfb970a5ae603f42b73870eb88fe486cf5315a46.tar.gz
QtHelp: Make QHelpCollectionDetails destructor virtual
Class is not final, nor do we prevent inheritance in any other way. This amends 7c39470f17, which got added for 5.13. Change-Id: Idbf82b58e5bd54b21ec2615cb2ebdc6cb5ece4a8 Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
-rw-r--r--src/assistant/help/qhelpcollectiondetails.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/assistant/help/qhelpcollectiondetails.h b/src/assistant/help/qhelpcollectiondetails.h
index df9dfa7d8..494f157d1 100644
--- a/src/assistant/help/qhelpcollectiondetails.h
+++ b/src/assistant/help/qhelpcollectiondetails.h
@@ -54,7 +54,7 @@ public:
QHelpCollectionDetails();
QHelpCollectionDetails(const QHelpCollectionDetails &other);
QHelpCollectionDetails(QHelpCollectionDetails &&other);
- ~QHelpCollectionDetails();
+ virtual ~QHelpCollectionDetails();
QHelpCollectionDetails &operator=(const QHelpCollectionDetails &other);
QHelpCollectionDetails &operator=(QHelpCollectionDetails &&other);