summaryrefslogtreecommitdiffstats
path: root/tests/manual/xembed-widgets/window.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/xembed-widgets/window.h')
-rw-r--r--tests/manual/xembed-widgets/window.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/tests/manual/xembed-widgets/window.h b/tests/manual/xembed-widgets/window.h
deleted file mode 100644
index 6f69a4330e0..00000000000
--- a/tests/manual/xembed-widgets/window.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright (C) 2017 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
-
-#ifndef WINDOW_H
-#define WINDOW_H
-
-#include <QWidget>
-
-QT_BEGIN_NAMESPACE
-class QComboBox;
-class QLineEdit;
-QT_END_NAMESPACE
-
-class Window : public QWidget
-{
- Q_OBJECT
-
-public:
- Window();
-
-public slots:
- void echoChanged(int);
- void validatorChanged(int);
- void alignmentChanged(int);
- void inputMaskChanged(int);
- void accessChanged(int);
-
-private:
- QLineEdit *echoLineEdit;
- QLineEdit *validatorLineEdit;
- QLineEdit *alignmentLineEdit;
- QLineEdit *inputMaskLineEdit;
- QLineEdit *accessLineEdit;
-};
-
-#endif