diff options
author | Edward Welbourne <[email protected]> | 2021-09-09 15:57:11 +0200 |
---|---|---|
committer | Edward Welbourne <[email protected]> | 2021-09-17 17:54:10 +0000 |
commit | 1c6d6b7c0d7d7e8a96d1f7b2f259933910b2d481 (patch) | |
tree | 12f704a9a115982237719dde824b2c0685d87b36 | |
parent | d48db627f3fee4a21364bf0f8de9f9ea56809f3d (diff) |
Fix name used for qmath.h in an include
Pick-to: 6.2
Change-Id: I9be8d4cc33d75a806a1ecf9950d7bac330abe9ea
Reviewed-by: Paul Wicking <[email protected]>
-rw-r--r-- | src/gui/doc/snippets/transform/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/doc/snippets/transform/main.cpp b/src/gui/doc/snippets/transform/main.cpp index d15b0590207..48af1d13df6 100644 --- a/src/gui/doc/snippets/transform/main.cpp +++ b/src/gui/doc/snippets/transform/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2016 The Qt Company Ltd. +** Copyright (C) 2021 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the documentation of the Qt Toolkit. @@ -48,7 +48,7 @@ ** ****************************************************************************/ #include <QApplication> -#include <QMath> +#include <QtMath> #include <QPainter> #include <QVBoxLayout> #include <QWidget> |