Part/PD: modernize C++: redundant void arg
This commit is contained in:
@@ -134,7 +134,7 @@ void TaskThicknessParameters::setButtons(const selectionModes mode)
|
||||
ui->buttonRefSel->setText(mode == refSel ? btnPreviewStr() : btnSelectStr());
|
||||
}
|
||||
|
||||
void TaskThicknessParameters::onRefDeleted(void)
|
||||
void TaskThicknessParameters::onRefDeleted()
|
||||
{
|
||||
TaskDressUpParameters::deleteRef(ui->listWidgetReferences);
|
||||
}
|
||||
@@ -172,7 +172,7 @@ void TaskThicknessParameters::onModeChanged(int mode) {
|
||||
hideOnError();
|
||||
}
|
||||
|
||||
double TaskThicknessParameters::getValue(void) const
|
||||
double TaskThicknessParameters::getValue() const
|
||||
{
|
||||
return ui->Value->value().getValue();
|
||||
}
|
||||
@@ -187,7 +187,7 @@ void TaskThicknessParameters::onReversedChanged(const bool on) {
|
||||
hideOnError();
|
||||
}
|
||||
|
||||
bool TaskThicknessParameters::getReversed(void) const
|
||||
bool TaskThicknessParameters::getReversed() const
|
||||
{
|
||||
return ui->checkReverse->isChecked();
|
||||
}
|
||||
@@ -201,17 +201,17 @@ void TaskThicknessParameters::onIntersectionChanged(const bool on) {
|
||||
hideOnError();
|
||||
}
|
||||
|
||||
bool TaskThicknessParameters::getIntersection(void) const
|
||||
bool TaskThicknessParameters::getIntersection() const
|
||||
{
|
||||
return ui->checkIntersection->isChecked();
|
||||
}
|
||||
|
||||
int TaskThicknessParameters::getJoinType(void) const {
|
||||
int TaskThicknessParameters::getJoinType() const {
|
||||
|
||||
return ui->joinComboBox->currentIndex();
|
||||
}
|
||||
|
||||
int TaskThicknessParameters::getMode(void) const {
|
||||
int TaskThicknessParameters::getMode() const {
|
||||
|
||||
return ui->modeComboBox->currentIndex();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user