Source typos fixes

This commit is contained in:
luz.paz
2018-05-04 10:31:47 -04:00
committed by Yorik van Havre
parent d9314b756e
commit 420c2d7c03
8 changed files with 16 additions and 16 deletions

View File

@@ -830,7 +830,7 @@ void TaskSketcherConstrains::slotConstraintsChanged(void)
bool showDatums = (Filter < 3);
bool showNamed = (Filter == 3 && !(constraint->Name.empty()));
bool showNonDriving = (Filter == 4 && !constraint->isDriving);
bool hideInternalAligment = this->ui->filterInternalAlignment->isChecked();
bool hideInternalAlignment = this->ui->filterInternalAlignment->isChecked();
switch(constraint->Type) {
case Sketcher::Horizontal:
@@ -854,7 +854,7 @@ void TaskSketcherConstrains::slotConstraintsChanged(void)
visible = (showDatums || showNamed || showNonDriving);
break;
case Sketcher::InternalAlignment:
visible = ((showNormal || showNamed) && !hideInternalAligment);
visible = ((showNormal || showNamed) && !hideInternalAlignment);
default:
break;
}

View File

@@ -3172,7 +3172,7 @@ void ViewProviderSketch::drawMergedConstraintIcons(IconQueue iconQueue)
}
/// Note: labels, labelColors, and boundignBoxes are all
/// Note: labels, labelColors, and boundingBoxes are all
/// assumed to be the same length.
QImage ViewProviderSketch::renderConstrIcon(const QString &type,
const QColor &iconColor,