Removed obsolete void argument lists.
This commit is contained in:
@@ -77,7 +77,7 @@ namespace glabels
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void BarcodeBackends::init( void )
|
void BarcodeBackends::init()
|
||||||
{
|
{
|
||||||
static BarcodeBackends* singletonInstance = nullptr;
|
static BarcodeBackends* singletonInstance = nullptr;
|
||||||
|
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ namespace glabels
|
|||||||
BarcodeBackends();
|
BarcodeBackends();
|
||||||
|
|
||||||
public:
|
public:
|
||||||
static void init( void );
|
static void init();
|
||||||
|
|
||||||
/////////////////////////////////
|
/////////////////////////////////
|
||||||
// Public Methods
|
// Public Methods
|
||||||
|
|||||||
@@ -124,7 +124,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// Image filenameNode Property Getter
|
/// Image filenameNode Property Getter
|
||||||
///
|
///
|
||||||
TextNode LabelModelImageObject::filenameNode( void ) const
|
TextNode LabelModelImageObject::filenameNode() const
|
||||||
{
|
{
|
||||||
return mFilenameNode;
|
return mFilenameNode;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ namespace glabels
|
|||||||
//
|
//
|
||||||
// Image Property: filenameNode
|
// Image Property: filenameNode
|
||||||
//
|
//
|
||||||
TextNode filenameNode( void ) const override;
|
TextNode filenameNode() const override;
|
||||||
void setFilenameNode( const TextNode& value ) override;
|
void setFilenameNode( const TextNode& value ) override;
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// Line Width Property Getter
|
/// Line Width Property Getter
|
||||||
///
|
///
|
||||||
Distance LabelModelLineObject::lineWidth( void ) const
|
Distance LabelModelLineObject::lineWidth() const
|
||||||
{
|
{
|
||||||
return mLineWidth;
|
return mLineWidth;
|
||||||
}
|
}
|
||||||
@@ -110,7 +110,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// Line Color Node Property Getter
|
/// Line Color Node Property Getter
|
||||||
///
|
///
|
||||||
ColorNode LabelModelLineObject::lineColorNode( void ) const
|
ColorNode LabelModelLineObject::lineColorNode() const
|
||||||
{
|
{
|
||||||
return mLineColorNode;
|
return mLineColorNode;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -57,14 +57,14 @@ namespace glabels
|
|||||||
//
|
//
|
||||||
// Line Property: lineWidth
|
// Line Property: lineWidth
|
||||||
//
|
//
|
||||||
Distance lineWidth( void ) const override;
|
Distance lineWidth() const override;
|
||||||
void setLineWidth( const Distance& value ) override;
|
void setLineWidth( const Distance& value ) override;
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Line Property: lineColorNode
|
// Line Property: lineColorNode
|
||||||
//
|
//
|
||||||
ColorNode lineColorNode( void ) const override;
|
ColorNode lineColorNode() const override;
|
||||||
void setLineColorNode( const ColorNode& value ) override;
|
void setLineColorNode( const ColorNode& value ) override;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// Line Width Property Getter
|
/// Line Width Property Getter
|
||||||
///
|
///
|
||||||
Distance LabelModelShapeObject::lineWidth( void ) const
|
Distance LabelModelShapeObject::lineWidth() const
|
||||||
{
|
{
|
||||||
return mLineWidth;
|
return mLineWidth;
|
||||||
}
|
}
|
||||||
@@ -101,7 +101,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// Line Color Node Property Getter
|
/// Line Color Node Property Getter
|
||||||
///
|
///
|
||||||
ColorNode LabelModelShapeObject::lineColorNode( void ) const
|
ColorNode LabelModelShapeObject::lineColorNode() const
|
||||||
{
|
{
|
||||||
return mLineColorNode;
|
return mLineColorNode;
|
||||||
}
|
}
|
||||||
@@ -123,7 +123,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// Fill Color Node Property Getter
|
/// Fill Color Node Property Getter
|
||||||
///
|
///
|
||||||
ColorNode LabelModelShapeObject::fillColorNode( void ) const
|
ColorNode LabelModelShapeObject::fillColorNode() const
|
||||||
{
|
{
|
||||||
return mFillColorNode;
|
return mFillColorNode;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -52,21 +52,21 @@ namespace glabels
|
|||||||
//
|
//
|
||||||
// Shape Property: lineWidth
|
// Shape Property: lineWidth
|
||||||
//
|
//
|
||||||
Distance lineWidth( void ) const override;
|
Distance lineWidth() const override;
|
||||||
void setLineWidth( const Distance& value ) override;
|
void setLineWidth( const Distance& value ) override;
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Shape Property: lineColorNode
|
// Shape Property: lineColorNode
|
||||||
//
|
//
|
||||||
ColorNode lineColorNode( void ) const override;
|
ColorNode lineColorNode() const override;
|
||||||
void setLineColorNode( const ColorNode& value ) override;
|
void setLineColorNode( const ColorNode& value ) override;
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Shape Property: fillColorNode
|
// Shape Property: fillColorNode
|
||||||
//
|
//
|
||||||
ColorNode fillColorNode( void ) const override;
|
ColorNode fillColorNode() const override;
|
||||||
void setFillColorNode( const ColorNode& value ) override;
|
void setFillColorNode( const ColorNode& value ) override;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -120,7 +120,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// Text Property Getter
|
/// Text Property Getter
|
||||||
///
|
///
|
||||||
QString LabelModelTextObject::text( void ) const
|
QString LabelModelTextObject::text() const
|
||||||
{
|
{
|
||||||
return mText;
|
return mText;
|
||||||
}
|
}
|
||||||
@@ -143,7 +143,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// FontFamily Property Getter
|
/// FontFamily Property Getter
|
||||||
///
|
///
|
||||||
QString LabelModelTextObject::fontFamily( void ) const
|
QString LabelModelTextObject::fontFamily() const
|
||||||
{
|
{
|
||||||
return mFontFamily;
|
return mFontFamily;
|
||||||
}
|
}
|
||||||
@@ -166,7 +166,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// FontSize Property Getter
|
/// FontSize Property Getter
|
||||||
///
|
///
|
||||||
double LabelModelTextObject::fontSize( void ) const
|
double LabelModelTextObject::fontSize() const
|
||||||
{
|
{
|
||||||
return mFontSize;
|
return mFontSize;
|
||||||
}
|
}
|
||||||
@@ -189,7 +189,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// FontWeight Property Getter
|
/// FontWeight Property Getter
|
||||||
///
|
///
|
||||||
QFont::Weight LabelModelTextObject::fontWeight( void ) const
|
QFont::Weight LabelModelTextObject::fontWeight() const
|
||||||
{
|
{
|
||||||
return mFontWeight;
|
return mFontWeight;
|
||||||
}
|
}
|
||||||
@@ -212,7 +212,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// FontItalicFlag Property Getter
|
/// FontItalicFlag Property Getter
|
||||||
///
|
///
|
||||||
bool LabelModelTextObject::fontItalicFlag( void ) const
|
bool LabelModelTextObject::fontItalicFlag() const
|
||||||
{
|
{
|
||||||
return mFontItalicFlag;
|
return mFontItalicFlag;
|
||||||
}
|
}
|
||||||
@@ -235,7 +235,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// FontUnderlineFlag Property Getter
|
/// FontUnderlineFlag Property Getter
|
||||||
///
|
///
|
||||||
bool LabelModelTextObject::fontUnderlineFlag( void ) const
|
bool LabelModelTextObject::fontUnderlineFlag() const
|
||||||
{
|
{
|
||||||
return mFontUnderlineFlag;
|
return mFontUnderlineFlag;
|
||||||
}
|
}
|
||||||
@@ -258,7 +258,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// Text Color Node Property Getter
|
/// Text Color Node Property Getter
|
||||||
///
|
///
|
||||||
ColorNode LabelModelTextObject::textColorNode( void ) const
|
ColorNode LabelModelTextObject::textColorNode() const
|
||||||
{
|
{
|
||||||
return mTextColorNode;
|
return mTextColorNode;
|
||||||
}
|
}
|
||||||
@@ -281,7 +281,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// TextHAlign Property Getter
|
/// TextHAlign Property Getter
|
||||||
///
|
///
|
||||||
Qt::Alignment LabelModelTextObject::textHAlign( void ) const
|
Qt::Alignment LabelModelTextObject::textHAlign() const
|
||||||
{
|
{
|
||||||
return mTextHAlign;
|
return mTextHAlign;
|
||||||
}
|
}
|
||||||
@@ -304,7 +304,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// TextVAlign Property Getter
|
/// TextVAlign Property Getter
|
||||||
///
|
///
|
||||||
Qt::Alignment LabelModelTextObject::textVAlign( void ) const
|
Qt::Alignment LabelModelTextObject::textVAlign() const
|
||||||
{
|
{
|
||||||
return mTextVAlign;
|
return mTextVAlign;
|
||||||
}
|
}
|
||||||
@@ -327,7 +327,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// TextLineSpacing Property Getter
|
/// TextLineSpacing Property Getter
|
||||||
///
|
///
|
||||||
double LabelModelTextObject::textLineSpacing( void ) const
|
double LabelModelTextObject::textLineSpacing() const
|
||||||
{
|
{
|
||||||
return mTextLineSpacing;
|
return mTextLineSpacing;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// Get record list
|
/// Get record list
|
||||||
///
|
///
|
||||||
const QList<Record*>& Merge::recordList( void ) const
|
const QList<Record*>& Merge::recordList( ) const
|
||||||
{
|
{
|
||||||
return mRecordList;
|
return mRecordList;
|
||||||
}
|
}
|
||||||
|
|||||||
+4
-4
@@ -47,7 +47,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// Get x1
|
/// Get x1
|
||||||
///
|
///
|
||||||
Distance Region::x1( void ) const
|
Distance Region::x1() const
|
||||||
{
|
{
|
||||||
return mX1;
|
return mX1;
|
||||||
}
|
}
|
||||||
@@ -65,7 +65,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// Get y1
|
/// Get y1
|
||||||
///
|
///
|
||||||
Distance Region::y1( void ) const
|
Distance Region::y1() const
|
||||||
{
|
{
|
||||||
return mY1;
|
return mY1;
|
||||||
}
|
}
|
||||||
@@ -83,7 +83,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// Get x2
|
/// Get x2
|
||||||
///
|
///
|
||||||
Distance Region::x2( void ) const
|
Distance Region::x2() const
|
||||||
{
|
{
|
||||||
return mX2;
|
return mX2;
|
||||||
}
|
}
|
||||||
@@ -101,7 +101,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// Get y2
|
/// Get y2
|
||||||
///
|
///
|
||||||
Distance Region::y2( void ) const
|
Distance Region::y2() const
|
||||||
{
|
{
|
||||||
return mY2;
|
return mY2;
|
||||||
}
|
}
|
||||||
|
|||||||
+4
-4
@@ -52,21 +52,21 @@ namespace glabels
|
|||||||
//
|
//
|
||||||
// X1 Property
|
// X1 Property
|
||||||
//
|
//
|
||||||
Distance x1( void ) const;
|
Distance x1() const;
|
||||||
void setX1( const Distance& value );
|
void setX1( const Distance& value );
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Y1 Property
|
// Y1 Property
|
||||||
//
|
//
|
||||||
Distance y1( void ) const;
|
Distance y1() const;
|
||||||
void setY1( const Distance& value );
|
void setY1( const Distance& value );
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// X2 Property
|
// X2 Property
|
||||||
//
|
//
|
||||||
Distance x2( void ) const;
|
Distance x2() const;
|
||||||
void setX2( const Distance& value );
|
void setX2( const Distance& value );
|
||||||
|
|
||||||
|
|
||||||
@@ -74,7 +74,7 @@ namespace glabels
|
|||||||
//
|
//
|
||||||
// Y2 Property
|
// Y2 Property
|
||||||
//
|
//
|
||||||
Distance y2( void ) const;
|
Distance y2() const;
|
||||||
void setY2( const Distance& value );
|
void setY2( const Distance& value );
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -45,7 +45,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// Get w
|
/// Get w
|
||||||
///
|
///
|
||||||
Distance Size::w( void ) const
|
Distance Size::w() const
|
||||||
{
|
{
|
||||||
return mW;
|
return mW;
|
||||||
}
|
}
|
||||||
@@ -63,7 +63,7 @@ namespace glabels
|
|||||||
///
|
///
|
||||||
/// Get h
|
/// Get h
|
||||||
///
|
///
|
||||||
Distance Size::h( void ) const
|
Distance Size::h() const
|
||||||
{
|
{
|
||||||
return mH;
|
return mH;
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-2
@@ -51,14 +51,14 @@ namespace glabels
|
|||||||
//
|
//
|
||||||
// w Property
|
// w Property
|
||||||
//
|
//
|
||||||
Distance w( void ) const;
|
Distance w() const;
|
||||||
void setW( const Distance& value );
|
void setW( const Distance& value );
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// H Property
|
// H Property
|
||||||
//
|
//
|
||||||
Distance h( void ) const;
|
Distance h() const;
|
||||||
void setH( const Distance& value );
|
void setH( const Distance& value );
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user