From 48a1a5564f89e1e8f0b6f4a28398e4ae0b3f751c Mon Sep 17 00:00:00 2001 From: Volker Hilsheimer Date: Wed, 8 Feb 2023 13:26:22 +0100 Subject: Examples: move widgets/codeeditor into manual tests It's not a very well written example, using (largely unneed) hacks to implement what it does. It's also misleading - the syntaxhighlighter example is a better showcase for building a useful code editor. Move it to manual tests. Fixes: QTBUG-111025 Pick-to: 6.5 Change-Id: I405d41688235bf3e9a08373e716769f26d02fec6 Reviewed-by: Eskil Abrahamsen Blomfeldt --- tests/manual/textrendering/codeeditor/main.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tests/manual/textrendering/codeeditor/main.cpp (limited to 'tests/manual/textrendering/codeeditor/main.cpp') diff --git a/tests/manual/textrendering/codeeditor/main.cpp b/tests/manual/textrendering/codeeditor/main.cpp new file mode 100644 index 00000000000..20b72b18aed --- /dev/null +++ b/tests/manual/textrendering/codeeditor/main.cpp @@ -0,0 +1,18 @@ +// Copyright (C) 2016 The Qt Company Ltd. +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause + +#include + +#include "codeeditor.h" + +int main(int argv, char **args) +{ + QApplication app(argv, args); + + CodeEditor editor; + editor.setWindowTitle(QObject::tr("Code Editor Example")); + editor.show(); + + return app.exec(); +} + -- cgit v1.2.3