summaryrefslogtreecommitdiffstats
path: root/examples/embedded/lightmaps/main.cpp
diff options
context:
space:
mode:
authorLucie Gérard <lucie.gerard@qt.io>2023-11-15 10:24:42 +0100
committerLucie Gérard <lucie.gerard@qt.io>2023-11-17 19:39:33 +0100
commit4c36bb854cb8deaa2841bf2aba7e71ea4b1a06dd (patch)
tree013e21393f897581de488fd02f03f6f800baa882 /examples/embedded/lightmaps/main.cpp
parent4bb230f65e9e27984479c07288a71797c8651b66 (diff)
Remove undocumented embedded examples
Task-number: QTBUG-119117 Change-Id: I7fd104742771e2ce6d4ad7afd66e2beca3b4f672 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'examples/embedded/lightmaps/main.cpp')
-rw-r--r--examples/embedded/lightmaps/main.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/examples/embedded/lightmaps/main.cpp b/examples/embedded/lightmaps/main.cpp
deleted file mode 100644
index 9719eec8379..00000000000
--- a/examples/embedded/lightmaps/main.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-#include <QApplication>
-#include "mapzoom.h"
-
-int main(int argc, char **argv)
-{
-
- QApplication app(argc, argv);
- app.setApplicationName("LightMaps");
-
- MapZoom w;
- w.resize(600, 450);
- w.show();
-
- return app.exec();
-}