Tear-off band has been added

Tear-off band has been added

Tear-off band has been added
This commit is contained in:
Arin Alexander
2016-10-04 04:21:22 +04:00
parent 46e89b8e9d
commit dc41959d52
17 changed files with 228 additions and 26 deletions

View File

@@ -37,6 +37,7 @@
#include "lrdataband.h"
#include "lrsubdetailband.h"
#include "lrgroupbands.h"
#include "lrtearoffband.h"
namespace LimeReport{
@@ -90,6 +91,8 @@ BandDesignIntf *BandsManager::createBand(BandDesignIntf::BandsType bandType, QOb
return new DataHeaderBand(owner, parent);
case BandDesignIntf::DataFooter:
return new DataFooterBand(owner, parent);
case BandDesignIntf::TearOffBand:
return new TearOffBand(owner, parent);
}
return 0;