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

23 lines
402 B
C++

#include "countryregistergrid.h"
CountryRegisterGrid::CountryRegisterGrid(QWidget *parent) : GridForm<CountryData>(parent)
{
setTableModel(new AutoTableModel<CountryData>());
showImportButton();
}
bool CountryRegisterGrid::canAddRecord()
{
return false;
}
bool CountryRegisterGrid::canEditRecord()
{
return false;
}
bool CountryRegisterGrid::canDeleteRecord()
{
return false;
}