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