diff options
author | Michal Klocek <michal.klocek@qt.io> | 2023-03-17 12:06:19 +0100 |
---|---|---|
committer | Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> | 2023-03-25 09:23:05 +0000 |
commit | c9f7dddeb6bee8c5eb1337adf8c9cb166e98cf9a (patch) | |
tree | 6b0fc1355cb4dde25bc8fc09ba413a7ce96b21ed /tests/manual/widgets/inputmethods/controlview.h | |
parent | 8755a5cfa23256de9e6a0b6ffd8bec0998ddf5b8 (diff) | |
download | qtwebengine-c9f7dddeb6bee8c5eb1337adf8c9cb166e98cf9a.tar.gz |
Minor. Fix namespace issues of inputmethods manul test
Change-Id: Ic0f318aa63cab901b979d76a34e329b2ab8359cf
Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
(cherry picked from commit cec2d7602709dae40a172b4adcf1c76bcf258f9c)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'tests/manual/widgets/inputmethods/controlview.h')
-rw-r--r-- | tests/manual/widgets/inputmethods/controlview.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/manual/widgets/inputmethods/controlview.h b/tests/manual/widgets/inputmethods/controlview.h index f6b3e7fe6..caa08593f 100644 --- a/tests/manual/widgets/inputmethods/controlview.h +++ b/tests/manual/widgets/inputmethods/controlview.h @@ -8,12 +8,15 @@ #include <QTextCharFormat> #include <QWidget> -class ColorPicker; +QT_BEGIN_NAMESPACE class QComboBox; class QLabel; class QLineEdit; class QPushButton; class QSpinBox; +QT_END_NAMESPACE + +class ColorPicker; class ControlView : public QWidget { |