Remove tst_manual_toplevel manual test as irrelevant

Top level widget that can receive paint events. This manual test seems
irrelevant.

Shows an empty widget topLevel.

Remove tst_manual_topLevel manual test.

Change-Id: Id9b037067cf79ea516e5e7d18c281f9e1d2f14c2
Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@qt.io>
This commit is contained in:
Frédéric Lefebvre 2025-01-07 09:19:44 +01:00
parent 5c0b08a20d
commit 78b6969f1b
5 changed files with 0 additions and 38 deletions

View File

@ -4,5 +4,4 @@
add_subdirectory(mainwindow)
add_subdirectory(splitter)
add_subdirectory(tableview)
add_subdirectory(toplevel)
add_subdirectory(widget)

View File

@ -5,5 +5,4 @@ SUBDIRS = mainwindow \
splitter \
tableview \
task141091 \
toplevel \
widget

View File

@ -1,15 +0,0 @@
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
#####################################################################
## tst_manual_toplevel Binary:
#####################################################################
qt_internal_add_manual_test(tst_manual_toplevel
SOURCES
../shared/shared.h
main.cpp
LIBRARIES
Qt::Gui
Qt::Widgets
)

View File

@ -1,15 +0,0 @@
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include "../shared/shared.h"
#include <QApplication>
int main(int argc, char **argv)
{
QApplication app(argc, argv);
StaticWidget widget;
widget.show();
return app.exec();
}

View File

@ -1,6 +0,0 @@
CONFIG += console
QT += widgets
TARGET = tst_manual_toplevel
HEADERS += ../shared/shared.h
SOURCES += main.cpp