ESGRAF48/source/PrintableModel.cpp

12 lines
205 B
C++
Raw Normal View History

2018-12-15 15:12:20 +00:00
#include "PrintableModel.h"
QTextTableFormat PrintableModel::defaultTableFormat()
{
QTextTableFormat tableFormat;
tableFormat.setCellPadding(2);
tableFormat.setCellSpacing(0);
return tableFormat;
}