summaryrefslogtreecommitdiffstats
path: root/examples/network/googlesuggest/searchbox.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/network/googlesuggest/searchbox.h')
-rw-r--r--examples/network/googlesuggest/searchbox.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/examples/network/googlesuggest/searchbox.h b/examples/network/googlesuggest/searchbox.h
deleted file mode 100644
index be9beba1bc..0000000000
--- a/examples/network/googlesuggest/searchbox.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright (C) 2017 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-#ifndef SEARCHBOX_H
-#define SEARCHBOX_H
-
-//! [1]
-#include <QLineEdit>
-
-class GSuggestCompletion;
-
-class SearchBox: public QLineEdit
-{
- Q_OBJECT
-
-public:
- explicit SearchBox(QWidget *parent = nullptr);
-
-protected slots:
- void doSearch();
-
-private:
- GSuggestCompletion *completer = nullptr;
-//! [1]
-};
-
-
-#endif // SEARCHBOX_H