summaryrefslogtreecommitdiffstats
path: root/examples/widgets/widgets/wiggly/dialog.h
diff options
context:
space:
mode:
authorJan Arve Sæther <jan-arve.saether@qt.io>2023-01-17 11:02:29 +0100
committerJan Arve Sæther <jan-arve.saether@qt.io>2023-01-31 22:28:30 +0100
commite08575a18ace251161cc813cfe48db68b8b15eee (patch)
tree6c8743dc52d58f6a192f4932648dafa46b5eaef7 /examples/widgets/widgets/wiggly/dialog.h
parent2db2eb600ad860e3822605990e731841a5e86e97 (diff)
Remove wiggly example
It demonstrates timerEvent() and some QFontMetrics There are other examples that demonstrates this Pick-to: 6.5 Change-Id: I4ad6f30c8ef93c995f980545ed88ab13b9aa9c7d Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'examples/widgets/widgets/wiggly/dialog.h')
-rw-r--r--examples/widgets/widgets/wiggly/dialog.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/examples/widgets/widgets/wiggly/dialog.h b/examples/widgets/widgets/wiggly/dialog.h
deleted file mode 100644
index 1f27668f4a..0000000000
--- a/examples/widgets/widgets/wiggly/dialog.h
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-#ifndef DIALOG_H
-#define DIALOG_H
-
-#include <QDialog>
-
-//! [0]
-class Dialog : public QDialog
-{
- Q_OBJECT
-
-public:
- explicit Dialog(QWidget *parent = nullptr);
-};
-//! [0]
-
-#endif