According to QUIP-18 [1], all tests file should be LicenseRef-Qt-Commercial OR GPL-3.0-only [1]: https://contribute.qt-project.org/quips/18 Pick-to: 6.7 Task-number: QTBUG-121787 Change-Id: I9657df5d660820e56c96d511ea49d321c54682e8 Reviewed-by: Christian Ehrlicher <ch.ehrlicher@gmx.de>
41 lines
1.4 KiB
C++
41 lines
1.4 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
|
|
|
#include "vbwidget.h"
|
|
#include <QVBoxLayout>
|
|
#include <QPushButton>
|
|
#include <QComboBox>
|
|
#include <QDateTimeEdit>
|
|
#include <QLineEdit>
|
|
#include <QSpinBox>
|
|
#include <QLabel>
|
|
#include <QCheckBox>
|
|
|
|
VbWidget::VbWidget(QWidget *parent) :
|
|
QWidget(parent)
|
|
{
|
|
QVBoxLayout *hb = new QVBoxLayout(this);
|
|
hb->setObjectName("VbWidget");
|
|
QComboBox *combo = new QComboBox(this);
|
|
combo->addItem("123");
|
|
QComboBox *combo2 = new QComboBox();
|
|
combo2->setEditable(true);
|
|
combo2->addItem("123");
|
|
|
|
hb->addWidget(new QLabel("123"));
|
|
hb->addWidget(new QLineEdit("123"));
|
|
hb->addWidget(combo);
|
|
hb->addWidget(combo2);
|
|
hb->addWidget(new QCheckBox("123"));
|
|
hb->addWidget(new QDateTimeEdit());
|
|
hb->addWidget(new QPushButton("123"));
|
|
hb->addWidget(new QSpinBox());
|
|
|
|
qDebug("There should be four warnings, but no crash or freeze:");
|
|
hb->addWidget(this); ///< This command should print a warning, but should not add "this"
|
|
hb->addWidget(nullptr); ///< This command should print a warning, but should not add "NULL"
|
|
hb->addLayout(hb); ///< This command should print a warning, but should not add "hb"
|
|
hb->addLayout(nullptr); ///< This command should print a warning, but should not add "NULL"
|
|
qDebug("Neither crashed nor frozen");
|
|
}
|