Initialize previously uninitialized members.

This commit is contained in:
Jim Evins
2018-02-03 21:29:29 -05:00
parent c7c97178ca
commit 2b5ad625e4
10 changed files with 30 additions and 40 deletions
+2 -2
View File
@@ -47,9 +47,9 @@ namespace glabels
PageRenderer::PageRenderer( const Model* model )
: mModel(nullptr), mNCopies(0), mStartLabel(0),
: mModel(nullptr), mMerge(nullptr), mNCopies(0), mStartLabel(0), mLastLabel(0),
mPrintOutlines(false), mPrintCropMarks(false), mPrintReverse(false),
mIPage(0), mIsMerge(false), mNPages(0)
mIPage(0), mIsMerge(false), mNPages(0), mNLabelsPerPage(0)
{
if ( model )
{