mirror of
https://github.com/fralx/LimeReport.git
synced 2025-09-23 16:39:07 +03:00
Merge branch 'master' into 1.4
This commit is contained in:
@@ -143,7 +143,8 @@ BandDesignIntf::BandDesignIntf(BandsType bandType, const QString &xmlTypeName, Q
|
||||
m_columnsFillDirection(Horizontal),
|
||||
m_reprintOnEachPage(false),
|
||||
m_startNewPage(false),
|
||||
m_startFromNewPage(false)
|
||||
m_startFromNewPage(false),
|
||||
m_printAlways(false)
|
||||
{
|
||||
setPosibleResizeDirectionFlags(ResizeBottom);
|
||||
setPosibleMoveFlags(TopBotom);
|
||||
@@ -716,6 +717,16 @@ void BandDesignIntf::childBandDeleted(QObject *band)
|
||||
m_childBands.removeAt(m_childBands.indexOf(reinterpret_cast<BandDesignIntf*>(band)));
|
||||
}
|
||||
|
||||
bool BandDesignIntf::printAlways() const
|
||||
{
|
||||
return m_printAlways;
|
||||
}
|
||||
|
||||
void BandDesignIntf::setPrintAlways(bool printAlways)
|
||||
{
|
||||
m_printAlways = printAlways;
|
||||
}
|
||||
|
||||
bool BandDesignIntf::startFromNewPage() const
|
||||
{
|
||||
return m_startFromNewPage;
|
||||
|
Reference in New Issue
Block a user