summaryrefslogtreecommitdiffstats
path: root/examples/widgets/tutorials/addressbook/part6/finddialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/tutorials/addressbook/part6/finddialog.h')
-rw-r--r--examples/widgets/tutorials/addressbook/part6/finddialog.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/examples/widgets/tutorials/addressbook/part6/finddialog.h b/examples/widgets/tutorials/addressbook/part6/finddialog.h
deleted file mode 100644
index 7c9a3af30f..0000000000
--- a/examples/widgets/tutorials/addressbook/part6/finddialog.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-#ifndef FINDDIALOG_H
-#define FINDDIALOG_H
-
-#include <QDialog>
-
-QT_BEGIN_NAMESPACE
-class QLineEdit;
-class QPushButton;
-QT_END_NAMESPACE
-
-class FindDialog : public QDialog
-{
- Q_OBJECT
-
-public:
- FindDialog(QWidget *parent = nullptr);
- QString getFindText();
-
-public slots:
- void findClicked();
-
-private:
- QPushButton *findButton;
- QLineEdit *lineEdit;
- QString findText;
-};
-
-#endif