Source typos fixes

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

View File

@@ -100,7 +100,7 @@ public:
static QMessageBox::StandardButton dialogButtonBoxToMessageBoxButton(QDialogButtonBox::StandardButton);
// convenient show method
static void showMessage(const QString& haeder, const QString& message, bool check=false, const QString& checkText = QString::fromLatin1("Don't show me again"));
static void showMessage(const QString& header, const QString& message, bool check=false, const QString& checkText = QString::fromLatin1("Don't show me again"));
private Q_SLOTS:
void slotClicked(QAbstractButton *b);

View File

@@ -1160,7 +1160,7 @@ PyResource::PyResource() : myDlg(0)
PyResource::~PyResource()
{
delete myDlg;
for (std::vector<SignalConnect*>::iterator it = mySingals.begin(); it != mySingals.end(); ++it) {
for (std::vector<SignalConnect*>::iterator it = mySignals.begin(); it != mySignals.end(); ++it) {
SignalConnect* sc = *it;
delete sc;
}
@@ -1264,7 +1264,7 @@ bool PyResource::connect(const char* sender, const char* signal, PyObject* cb)
if (objS) {
SignalConnect* sc = new SignalConnect(this, cb);
mySingals.push_back(sc);
mySignals.push_back(sc);
return QObject::connect(objS, sigStr.toLatin1(), sc, SLOT ( onExecute() ) );
}
else

View File

@@ -421,7 +421,7 @@ public:
Py::Object connect(const Py::Tuple&);
private:
std::vector<class SignalConnect*> mySingals;
std::vector<class SignalConnect*> mySignals;
QDialog* myDlg;
};

View File

@@ -103,7 +103,7 @@ public:
// Returned default bounding box if relevant is can't be used for some reason
static SbBox3f defaultBoundBox ();
// Returns a default marging factor (part of size )
// Returns a default margin factor (part of size )
static double marginFactor () { return 0.1; };
protected:

View File

@@ -85,10 +85,10 @@ void ViewProviderDatumLine::setExtents (Base::BoundBox3d bbox) {
// Add origin of the line to the box if it's not
bbox.Add ( Base::Vector3d (0, 0, 0) );
double marging = bbox.LengthZ () * marginFactor ();
double margin = bbox.LengthZ () * marginFactor ();
// Display the line
pCoords->point.setNum (2);
pCoords->point.set1Value(0, 0, 0, bbox.MaxZ + marging );
pCoords->point.set1Value(1, 0, 0, bbox.MinZ - marging );
pCoords->point.set1Value(0, 0, 0, bbox.MaxZ + margin );
pCoords->point.set1Value(1, 0, 0, bbox.MinZ - margin );
}

View File

@@ -107,14 +107,14 @@ void ViewProviderDatumPlane::setExtents (Base::BoundBox3d bbox) {
// Add origin of the plane to the box if it's not
bbox.Add ( Base::Vector3d (0, 0, 0) );
double marging = sqrt(bbox.LengthX ()*bbox.LengthY ()) * marginFactor ();
double margin = sqrt(bbox.LengthX ()*bbox.LengthY ()) * marginFactor ();
// Change the coordinates of the line
pCoords->point.setNum (4);
pCoords->point.set1Value(0, bbox.MaxX + marging, bbox.MaxY + marging, 0 );
pCoords->point.set1Value(1, bbox.MinX - marging, bbox.MaxY + marging, 0 );
pCoords->point.set1Value(2, bbox.MinX - marging, bbox.MinY - marging, 0 );
pCoords->point.set1Value(3, bbox.MaxX + marging, bbox.MinY - marging, 0 );
pCoords->point.set1Value(0, bbox.MaxX + margin, bbox.MaxY + margin, 0 );
pCoords->point.set1Value(1, bbox.MinX - margin, bbox.MaxY + margin, 0 );
pCoords->point.set1Value(2, bbox.MinX - margin, bbox.MinY - margin, 0 );
pCoords->point.set1Value(3, bbox.MaxX + margin, bbox.MinY - margin, 0 );
}

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,