mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2025-09-23 16:49:07 +03:00
Merge branch 'master' into 1.4
Conflicts: limereport/items/lrtextitem.cpp limereport/items/lrtextitem.h
This commit is contained in:
@@ -144,7 +144,8 @@ BandDesignIntf::BandDesignIntf(BandsType bandType, const QString &xmlTypeName, Q
|
||||
m_reprintOnEachPage(false),
|
||||
m_startNewPage(false),
|
||||
m_startFromNewPage(false),
|
||||
m_printAlways(false)
|
||||
m_printAlways(false),
|
||||
m_repeatOnEachRow(false)
|
||||
{
|
||||
setPosibleResizeDirectionFlags(ResizeBottom);
|
||||
setPosibleMoveFlags(TopBotom);
|
||||
@@ -725,6 +726,16 @@ void BandDesignIntf::childBandDeleted(QObject *band)
|
||||
m_childBands.removeAt(m_childBands.indexOf(reinterpret_cast<BandDesignIntf*>(band)));
|
||||
}
|
||||
|
||||
bool BandDesignIntf::repeatOnEachRow() const
|
||||
{
|
||||
return m_repeatOnEachRow;
|
||||
}
|
||||
|
||||
void BandDesignIntf::setRepeatOnEachRow(bool repeatOnEachRow)
|
||||
{
|
||||
m_repeatOnEachRow = repeatOnEachRow;
|
||||
}
|
||||
|
||||
bool BandDesignIntf::printAlways() const
|
||||
{
|
||||
return m_printAlways;
|
||||
|
Reference in New Issue
Block a user