blob: 8e09e182d8b4b4e705e1827bdba9cad5d3978954 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include "tabbarform.h"
TabBarForm::TabBarForm(QWidget *parent) :
QWidget(parent),
ui(new Ui::TabBarForm)
{
ui->setupUi(this);
}
TabBarForm::~TabBarForm()
{
delete ui;
}
|