diff --git a/tests/manual/repaint/CMakeLists.txt b/tests/manual/repaint/CMakeLists.txt index 909e66d8bc4..1d14621dc17 100644 --- a/tests/manual/repaint/CMakeLists.txt +++ b/tests/manual/repaint/CMakeLists.txt @@ -2,7 +2,6 @@ # SPDX-License-Identifier: BSD-3-Clause add_subdirectory(mainwindow) -add_subdirectory(scrollarea) add_subdirectory(splitter) add_subdirectory(tableview) add_subdirectory(task141091) diff --git a/tests/manual/repaint/scrollarea/CMakeLists.txt b/tests/manual/repaint/scrollarea/CMakeLists.txt deleted file mode 100644 index a21cdb3f1c9..00000000000 --- a/tests/manual/repaint/scrollarea/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: BSD-3-Clause - -##################################################################### -## tst_manual_scrollarea Binary: -##################################################################### - -qt_internal_add_manual_test(tst_manual_scrollarea - GUI - SOURCES - ../shared/shared.h - main.cpp - LIBRARIES - Qt::Gui - Qt::Widgets -) diff --git a/tests/manual/repaint/scrollarea/main.cpp b/tests/manual/repaint/scrollarea/main.cpp deleted file mode 100644 index b45a85c3532..00000000000 --- a/tests/manual/repaint/scrollarea/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 "../shared/shared.h" - -int main(int argc, char **argv) -{ - QApplication app(argc, argv); - - QScrollArea scrollView; - - QWidget * staticWidget = new StaticWidget(); - staticWidget->resize(400, 200); - scrollView.setWidget(staticWidget); - - scrollView.setAttribute(Qt::WA_StaticContents); - - scrollView.resize(600, 400); - scrollView.show(); - - return app.exec(); -} - - diff --git a/tests/manual/repaint/scrollarea/scrollarea.pro b/tests/manual/repaint/scrollarea/scrollarea.pro deleted file mode 100644 index deff158cce6..00000000000 --- a/tests/manual/repaint/scrollarea/scrollarea.pro +++ /dev/null @@ -1,4 +0,0 @@ -QT += widgets -TARGET = tst_manual_scrollarea -HEADERS += ../shared/shared.h -SOURCES += main.cpp