Fixing warnings.
--HG-- branch : develop
This commit is contained in:
parent
25fc7227f0
commit
b1ef2a0f7a
|
@ -283,7 +283,7 @@ quint8 VLayoutGenerator::GetMultiplier() const
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void VLayoutGenerator::SetMultiplier(const quint8 &value)
|
void VLayoutGenerator::SetMultiplier(quint8 value)
|
||||||
{
|
{
|
||||||
if (value > 10)
|
if (value > 10)
|
||||||
{
|
{
|
||||||
|
@ -530,7 +530,7 @@ void VLayoutGenerator::SetRotationIncrease(int value)
|
||||||
{
|
{
|
||||||
rotationIncrease = value;
|
rotationIncrease = value;
|
||||||
|
|
||||||
if ((rotationIncrease >= 1 && rotationIncrease <= 180 && 360 % rotationIncrease == 0) == false)
|
if (not (rotationIncrease >= 1 && rotationIncrease <= 180 && 360 % rotationIncrease == 0))
|
||||||
{
|
{
|
||||||
rotationIncrease = 180;
|
rotationIncrease = 180;
|
||||||
}
|
}
|
||||||
|
|
|
@ -106,7 +106,7 @@ public:
|
||||||
void SetUnitePages(bool value);
|
void SetUnitePages(bool value);
|
||||||
|
|
||||||
quint8 GetMultiplier() const;
|
quint8 GetMultiplier() const;
|
||||||
void SetMultiplier(const quint8 &value);
|
void SetMultiplier(quint8 value);
|
||||||
|
|
||||||
bool IsStripOptimization() const;
|
bool IsStripOptimization() const;
|
||||||
void SetStripOptimization(bool value);
|
void SetStripOptimization(bool value);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user