You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
374 B

#pragma execution_character_set("utf-8")
#include "frmdevicesizetable.h"
#include "ui_frmdevicesizetable.h"
frmDeviceSizeTable::frmDeviceSizeTable(QWidget *parent) : QWidget(parent), ui(new Ui::frmDeviceSizeTable)
{
ui->setupUi(this);
ui->tableWidget->verticalHeader()->setDefaultSectionSize(25);
}
frmDeviceSizeTable::~frmDeviceSizeTable()
{
delete ui;
}