diff options
author | Eike Ziller <eike.ziller@theqtcompany.com> | 2015-06-04 15:28:11 +0200 |
---|---|---|
committer | Eike Ziller <eike.ziller@theqtcompany.com> | 2015-06-10 11:29:19 +0000 |
commit | 14ec0a63b95802c57dd62360ea771f7897d89dfb (patch) | |
tree | 703cf1b3b6a4de30ee19cbaaa1eea5634a328ed0 /src | |
parent | 4f927e4c87f07c4d50efcef5b61478df61cc9d3f (diff) | |
download | qt-creator-14ec0a63b95802c57dd62360ea771f7897d89dfb.tar.gz |
IEditor: Remove unneeded empty virtual destructor.
QObject already has a virtual destructor.
Change-Id: Ie407226775d1690623ecc76adf29e1b3723abb0c
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/coreplugin/editormanager/ieditor.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/plugins/coreplugin/editormanager/ieditor.h b/src/plugins/coreplugin/editormanager/ieditor.h index 858a560694..0a9896cf61 100644 --- a/src/plugins/coreplugin/editormanager/ieditor.h +++ b/src/plugins/coreplugin/editormanager/ieditor.h @@ -46,7 +46,6 @@ class CORE_EXPORT IEditor : public IContext public: IEditor(QObject *parent = 0); - virtual ~IEditor() {} bool duplicateSupported() const; void setDuplicateSupported(bool duplicateSupported); |