1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

0031939: Coding - correction of spelling errors in comments [part 4]

Fix various typos

Fixed via `codespell v2.1.dev
This commit is contained in:
luz paz
2020-12-16 11:58:16 +03:00
committed by bugmaster
parent 7fb9d6d573
commit 0177fe2617
196 changed files with 476 additions and 1351 deletions

View File

@@ -699,7 +699,7 @@ static Standard_Integer VtkRemove (Draw_Interpretor& ,
IVtk_IdType aShapeID = aSrc->GetShape()->GetId();
GetPicker()->RemoveSelectableObject (aSrc->GetShape());
GetPipeline (aSrc->GetShape()->GetId())->RemoveFromRenderer (aRenderer);
GetPipelines()->UnBind (aShapeID); // Remove a pipepline
GetPipelines()->UnBind (aShapeID); // Remove a pipeline
}
else
{

View File

@@ -827,12 +827,10 @@ Standard_Integer IVtkDraw_Interactor::ViewerMainLoop (Standard_Integer theArgNum
// Don't call Render when the window is resized to be larger:
//
// - if the window is resized to be larger, an Expose event will
// be trigged by the X server which will trigger a call to
// Render().
// be triggered by the X server which will trigger a call to Render().
// - if the window is resized to be smaller, no Expose event will
// be trigged by the X server, as no new area become visible.
// only in this case, we need to explicitly call Render()
// in ConfigureNotify.
// be triggered by the X server, as no new area become visible.
// only in this case, we need to explicitly call Render() in ConfigureNotify.
this->Render();
}
}