diff --git a/tests/manual/repaint/CMakeLists.txt b/tests/manual/repaint/CMakeLists.txt index 1d14621dc17..ff64805dc75 100644 --- a/tests/manual/repaint/CMakeLists.txt +++ b/tests/manual/repaint/CMakeLists.txt @@ -4,6 +4,5 @@ add_subdirectory(mainwindow) add_subdirectory(splitter) add_subdirectory(tableview) -add_subdirectory(task141091) add_subdirectory(toplevel) add_subdirectory(widget) diff --git a/tests/manual/repaint/task141091/CMakeLists.txt b/tests/manual/repaint/task141091/CMakeLists.txt deleted file mode 100644 index 6483e08ddba..00000000000 --- a/tests/manual/repaint/task141091/CMakeLists.txt +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: BSD-3-Clause - -##################################################################### -## task141091 Binary: -##################################################################### - -qt_internal_add_manual_test(task141091 - SOURCES - main.cpp - LIBRARIES - Qt::Gui - Qt::Widgets -) diff --git a/tests/manual/repaint/task141091/main.cpp b/tests/manual/repaint/task141091/main.cpp deleted file mode 100644 index 2fceea0148e..00000000000 --- a/tests/manual/repaint/task141091/main.cpp +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only - -#include -#include -#include -#include - -class MyWidget : public QWidget -{ -public: - MyWidget() : QWidget() - { - setAttribute(Qt::WA_OpaquePaintEvent); - setAttribute(Qt::WA_StaticContents); - } - -protected: - void paintEvent(QPaintEvent *e) { qDebug() << e->rect(); } -}; - -int main(int argc, char **argv) -{ - QApplication a(argc, argv); - MyWidget w; - w.show(); - return a.exec(); -} diff --git a/tests/manual/repaint/task141091/task141091.pro b/tests/manual/repaint/task141091/task141091.pro deleted file mode 100644 index b54299e5409..00000000000 --- a/tests/manual/repaint/task141091/task141091.pro +++ /dev/null @@ -1,3 +0,0 @@ -CONFIG += console -QT += widgets -SOURCES += main.cpp