summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorKevin Funk <kevin.funk@kdab.com>2017-09-21 17:01:03 +0200
committerKevin Funk <kevin.funk@kdab.com>2017-09-22 07:30:01 +0000
commit8762ae7315e9c6c0b2d99cca574fdd089a6eeffd (patch)
tree8ca53a36e107933ef5a0c23d219ea509d154d6d2 /util
parent11604b536619c2e144ee6346cf3ae8d538f57bbf (diff)
Replace Q_DECL_FINAL with final
Remaining uses of Q_DECL_FINAL are in: src/corelib/global/qcompilerdetection.h src/corelib/global/qglobal.cpp (definition and documentation of Q_DECL_FINAL) src/tools/moc/moc.cpp tests/auto/tools/moc/ (supported for moc for Q_DECL_FINAL) Change-Id: I0d28946c9c3f9d37d0b303db86079129014de1f3 Reviewed-by: Ville Voutilainen <ville.voutilainen@qt.io> Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'util')
-rw-r--r--util/glgen/codegenerator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/glgen/codegenerator.cpp b/util/glgen/codegenerator.cpp
index 9fbfc3bd8d..4627daa48b 100644
--- a/util/glgen/codegenerator.cpp
+++ b/util/glgen/codegenerator.cpp
@@ -989,7 +989,7 @@ void CodeGenerator::writeExtensionClassDeclaration(QTextStream &stream, const QS
stream << QStringLiteral(" ") << className << QStringLiteral("();") << endl << endl;
// Base class virtual function(s)
- QString resolveFunction = QStringLiteral(" bool initializeOpenGLFunctions() Q_DECL_FINAL;");
+ QString resolveFunction = QStringLiteral(" bool initializeOpenGLFunctions() final;");
stream << resolveFunction << endl << endl;
}