summaryrefslogtreecommitdiffstats
path: root/examples/embedded/lightmaps/main.cpp
diff options
context:
space:
mode:
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 9719eec837..0000000000
--- 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();
-}