summaryrefslogtreecommitdiffstats
path: root/examples/network/googlesuggest/main.cpp
diff options
context:
space:
mode:
authorMårten Nordheim <[email protected]>2023-01-25 11:56:21 +0100
committerMårten Nordheim <[email protected]>2023-02-14 17:48:09 +0100
commit21453410713650a97a074a8f3d78afbb4c70e6b3 (patch)
tree15ff591898219254a9de978c206fdcc9f0d2fc3b /examples/network/googlesuggest/main.cpp
parentc20336fe03fe7f1fabe4d1515bb1b1039843f652 (diff)
Delete googlesuggest
As a networking example it doesn't contribute much. But it has some interesting uses of widget/events Pick-to: 6.5 Change-Id: I194d32e6a304ae41819c20751e9f1ee1d9b5abdb Reviewed-by: Konrad Kujawa <[email protected]> Reviewed-by: Timur Pocheptsov <[email protected]> Reviewed-by: Alex Blasche <[email protected]>
Diffstat (limited to 'examples/network/googlesuggest/main.cpp')
-rw-r--r--examples/network/googlesuggest/main.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/examples/network/googlesuggest/main.cpp b/examples/network/googlesuggest/main.cpp
deleted file mode 100644
index 0e927f3d23d..00000000000
--- a/examples/network/googlesuggest/main.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright (C) 2017 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-#include <QApplication>
-
-#include "searchbox.h"
-
-int main(int argc, char * argv[])
-{
- QApplication app(argc, argv);
- SearchBox searchEdit;
- searchEdit.show();
- return app.exec();
-}