Misc. comment typos

[skip ci]
This commit is contained in:
luz.paz
2018-01-19 16:49:15 -05:00
committed by wmayer
parent f0af9770b7
commit d31f2e25b0
5 changed files with 5 additions and 5 deletions

View File

@@ -2229,7 +2229,7 @@ PyObject *PropertyBoolList::getPyObject(void)
void PropertyBoolList::setPyObject(PyObject *value)
{
// string is also a sequence and must be be treated differently
// string is also a sequence and must be treated differently
std::string str;
if (PyUnicode_Check(value)) {
#if PY_MAJOR_VERSION >= 3

View File

@@ -375,7 +375,7 @@ SbBool BlenderNavigationStyle::processSoEvent(const SoEvent * const ev)
}
// If for dragging the buttons 1 and 3 are pressed
// but then button 3 is relaesed we shouldn't switch
// but then button 3 is released we shouldn't switch
// into selection mode.
if (this->button1down && this->button3down)
this->lockButton1 = true;

View File

@@ -446,7 +446,7 @@ SbBool CADNavigationStyle::processSoEvent(const SoEvent * const ev)
}
// If for dragging the buttons 1 and 3 are pressed
// but then button 3 is relaesed we shouldn't switch
// but then button 3 is released we shouldn't switch
// into selection mode.
if (this->button1down && this->button3down)
this->lockButton1 = true;

View File

@@ -375,7 +375,7 @@ SbBool RevitNavigationStyle::processSoEvent(const SoEvent * const ev)
}
// If for dragging the buttons 1 and 3 are pressed
// but then button 3 is relaesed we shouldn't switch
// but then button 3 is released we shouldn't switch
// into selection mode.
if (this->button1down && this->button3down)
this->lockButton1 = true;

View File

@@ -79,7 +79,7 @@ private:
};
/**
* This is a special group node which be be defined to ignore bounding box actions.
* This is a special group node which must be defined to ignore bounding box actions.
* @author Werner Mayer
*/
class GuiExport SoSkipBoundingGroup : public SoGroup {