0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-10-02 19:56:58 +03:00

printAlways has been moved to BandDesignIntf & printAlways property has been added to DataHeaderBand & DataFooterBand

This commit is contained in:
Arin Alexander
2016-07-21 00:14:39 +03:00
parent c7b0a6d0e1
commit 942dc47b8f
6 changed files with 35 additions and 12 deletions

View File

@@ -106,7 +106,7 @@ QColor SubDetailBand::bandColor() const
//SubDetailHeaderBand
SubDetailHeaderBand::SubDetailHeaderBand(QObject *owner, QGraphicsItem *parent)
:BandDesignIntf(BandDesignIntf::SubDetailHeader,xmlTagHeader,owner,parent), m_printAlways(false)
:BandDesignIntf(BandDesignIntf::SubDetailHeader,xmlTagHeader,owner,parent)
{
setBandTypeText(tr("SubDetailHeader"));
setMarkerColor(bandColor());
@@ -130,7 +130,7 @@ BaseDesignIntf *SubDetailHeaderBand::createSameTypeItem(QObject *owner, QGraphic
//SubDetailFooterBand
SubDetailFooterBand::SubDetailFooterBand(QObject *owner, QGraphicsItem *parent)
: BandDesignIntf(BandDesignIntf::SubDetailFooter,xmlTagFooter,owner,parent), m_printAlways(false)
: BandDesignIntf(BandDesignIntf::SubDetailFooter,xmlTagFooter,owner,parent)
{
setMarkerColor(bandColor());
}