diff options
author | Daniel Teske <daniel.teske@theqtcompany.com> | 2015-02-16 15:37:27 +0100 |
---|---|---|
committer | Daniel Teske <daniel.teske@theqtcompany.com> | 2015-02-16 14:49:24 +0000 |
commit | 004735ea48dd32d593b4fbcd4d6eea17a223d8e8 (patch) | |
tree | b9748ceaa257e09440a9cdc5a2c5dfe6872b4a94 /src/plugins/cppeditor/cppeditorplugin.h | |
parent | f9130866b8a144fb9d96999c8e573e5084ceaaf5 (diff) | |
download | qt-creator-004735ea48dd32d593b4fbcd4d6eea17a223d8e8.tar.gz |
CppEditor: override -> Q_DECL_OVERRIDE
Pre g++4.7 compilers don't know override.
Change-Id: I07306ebe4f9161bb3806e9b4d1d4a143448c0033
Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@theqtcompany.com>
Diffstat (limited to 'src/plugins/cppeditor/cppeditorplugin.h')
-rw-r--r-- | src/plugins/cppeditor/cppeditorplugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cppeditor/cppeditorplugin.h b/src/plugins/cppeditor/cppeditorplugin.h index 1c41e495dc..318edfc5c3 100644 --- a/src/plugins/cppeditor/cppeditorplugin.h +++ b/src/plugins/cppeditor/cppeditorplugin.h @@ -86,7 +86,7 @@ private slots: #ifdef WITH_TESTS private: - QList<QObject *> createTestObjects() const override; + QList<QObject *> createTestObjects() const Q_DECL_OVERRIDE; private slots: // The following tests expect that no projects are loaded on start-up. |