summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_qt_add_ui_common/UicIncrementalBuild/src/widget1.cpp
blob: 4047ea4d9c4819cd0ac6765ea92dca191f4a94dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include "widget1.h"

#include "src/ui_widget1.h"

Widget1::Widget1(QWidget* parent)
  : QWidget(parent)
  , ui(new Ui::Widget1)
{
  ui->setupUi(this);
  connect(ui->lineEdit, SIGNAL(textChanged(const QString&)), this,
          SLOT(onTextChanged(const QString&)));
}

Widget1::~Widget1()
{
  delete ui;
}

void Widget1::onTextChanged(const QString& text)
{
  ui->OnTextChanged->setText(text);
}