diff --git a/ChangeLog.txt b/ChangeLog.txt index 1724d93bc8..18bd01715a 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -558,8 +558,8 @@ Version: V0.1B117 Date: Sun Mar 20 14:06:55 2005 +++++++++++++++++++++++++++++++ * Integration of latest Image module source * RFE 1159671 implemented (elements in alphabetic order) * Finishing drag&drop multiple files - * Finishing open from command line and droping on Programm icon - * solving load dependand modules + * Finishing open from command line and dropping on Program icon + * solving load dependent modules * more convenient Python console * Bug 1149706 fixed (Cannot load CAD curves) * RFE 1214187 implemented (Remove views from main window) diff --git a/src/App/PropertyLinks.cpp b/src/App/PropertyLinks.cpp index 137d293f89..965604b74c 100644 --- a/src/App/PropertyLinks.cpp +++ b/src/App/PropertyLinks.cpp @@ -74,7 +74,7 @@ PropertyLink::~PropertyLink() if (_pcLink && getContainer() && getContainer()->isDerivedFrom(App::DocumentObject::getClassTypeId())) { App::DocumentObject* parent = static_cast(getContainer()); // before accessing internals make sure the object is not about to be destroyed - // as otherwise the backlink contains dangling pointers + // otherwise the backlink contains dangling pointers if (!parent->testStatus(ObjectStatus::Destroy)) { if (_pcLink) _pcLink->_removeBackLink(parent); @@ -95,7 +95,7 @@ void PropertyLink::setValue(App::DocumentObject * lValue) if (getContainer() && getContainer()->isDerivedFrom(App::DocumentObject::getClassTypeId())) { App::DocumentObject* parent = static_cast(getContainer()); // before accessing internals make sure the object is not about to be destroyed - // as otherwise the backlink contains dangling pointers + // otherwise the backlink contains dangling pointers if (!parent->testStatus(ObjectStatus::Destroy)) { if (_pcLink) _pcLink->_removeBackLink(parent); @@ -222,7 +222,7 @@ PropertyLinkList::~PropertyLinkList() if (!_lValueList.empty() && getContainer() && getContainer()->isDerivedFrom(App::DocumentObject::getClassTypeId())) { App::DocumentObject* parent = static_cast(getContainer()); // before accessing internals make sure the object is not about to be destroyed - // as otherwise the backlink contains dangling pointers + // otherwise the backlink contains dangling pointers if (!parent->testStatus(ObjectStatus::Destroy)) { for(auto *obj : _lValueList) obj->_removeBackLink(parent); @@ -249,7 +249,7 @@ void PropertyLinkList::setValue(DocumentObject* lValue) if (getContainer() && getContainer()->isDerivedFrom(App::DocumentObject::getClassTypeId())) { App::DocumentObject* parent = static_cast(getContainer()); // before accessing internals make sure the object is not about to be destroyed - // as otherwise the backlink contains dangling pointers + // otherwise the backlink contains dangling pointers if (!parent->testStatus(ObjectStatus::Destroy)) { for(auto *obj : _lValueList) obj->_removeBackLink(parent); @@ -280,7 +280,7 @@ void PropertyLinkList::setValues(const std::vector& lValue) if (getContainer() && getContainer()->isDerivedFrom(App::DocumentObject::getClassTypeId())) { App::DocumentObject* parent = static_cast(getContainer()); // before accessing internals make sure the object is not about to be destroyed - // as otherwise the backlink contains dangling pointers + // otherwise the backlink contains dangling pointers if (!parent->testStatus(ObjectStatus::Destroy)) { for(auto *obj : _lValueList) obj->_removeBackLink(parent); @@ -440,7 +440,7 @@ PropertyLinkSub::~PropertyLinkSub() if (_pcLinkSub && getContainer() && getContainer()->isDerivedFrom(App::DocumentObject::getClassTypeId())) { App::DocumentObject* parent = static_cast(getContainer()); // before accessing internals make sure the object is not about to be destroyed - // as otherwise the backlink contains dangling pointers + // otherwise the backlink contains dangling pointers if (!parent->testStatus(ObjectStatus::Destroy)) { if (_pcLinkSub) _pcLinkSub->_removeBackLink(parent); @@ -459,7 +459,7 @@ void PropertyLinkSub::setValue(App::DocumentObject * lValue, const std::vectorisDerivedFrom(App::DocumentObject::getClassTypeId())) { App::DocumentObject* parent = static_cast(getContainer()); // before accessing internals make sure the object is not about to be destroyed - // as otherwise the backlink contains dangling pointers + // otherwise the backlink contains dangling pointers if (!parent->testStatus(ObjectStatus::Destroy)) { if (_pcLinkSub) _pcLinkSub->_removeBackLink(parent); @@ -649,7 +649,7 @@ PropertyLinkSubList::~PropertyLinkSubList() if (!_lValueList.empty() && getContainer() && getContainer()->isDerivedFrom(App::DocumentObject::getClassTypeId())) { App::DocumentObject* parent = static_cast(getContainer()); // before accessing internals make sure the object is not about to be destroyed - // as otherwise the backlink contains dangling pointers + // otherwise the backlink contains dangling pointers if (!parent->testStatus(ObjectStatus::Destroy)) { for(auto *obj : _lValueList) obj->_removeBackLink(parent); @@ -676,7 +676,7 @@ void PropertyLinkSubList::setValue(DocumentObject* lValue,const char* SubName) if (getContainer() && getContainer()->isDerivedFrom(App::DocumentObject::getClassTypeId())) { App::DocumentObject* parent = static_cast(getContainer()); // before accessing internals make sure the object is not about to be destroyed - // as otherwise the backlink contains dangling pointers + // otherwise the backlink contains dangling pointers if (!parent->testStatus(ObjectStatus::Destroy)) { for(auto *obj : _lValueList) obj->_removeBackLink(parent); @@ -712,7 +712,7 @@ void PropertyLinkSubList::setValues(const std::vector& lValue,c if (getContainer() && getContainer()->isDerivedFrom(App::DocumentObject::getClassTypeId())) { App::DocumentObject* parent = static_cast(getContainer()); // before accessing internals make sure the object is not about to be destroyed - // as otherwise the backlink contains dangling pointers + // otherwise the backlink contains dangling pointers if (!parent->testStatus(ObjectStatus::Destroy)) { //_lValueList can contain items multiple times, but we trust the document //object to ensure that this works @@ -746,7 +746,7 @@ void PropertyLinkSubList::setValues(const std::vector& lValue,c if (getContainer() && getContainer()->isDerivedFrom(App::DocumentObject::getClassTypeId())) { App::DocumentObject* parent = static_cast(getContainer()); // before accessing internals make sure the object is not about to be destroyed - // as otherwise the backlink contains dangling pointers + // otherwise the backlink contains dangling pointers if (!parent->testStatus(ObjectStatus::Destroy)) { //_lValueList can contain items multiple times, but we trust the document //object to ensure that this works @@ -774,7 +774,7 @@ void PropertyLinkSubList::setValue(DocumentObject* lValue, const std::vectorisDerivedFrom(App::DocumentObject::getClassTypeId())) { App::DocumentObject* parent = static_cast(getContainer()); // before accessing internals make sure the object is not about to be destroyed - // as otherwise the backlink contains dangling pointers + // otherwise the backlink contains dangling pointers if (!parent->testStatus(ObjectStatus::Destroy)) { //_lValueList can contain items multiple times, but we trust the document //object to ensure that this works diff --git a/src/Gui/CommandDoc.cpp b/src/Gui/CommandDoc.cpp index be21d4b2db..1fb6d69d9e 100644 --- a/src/Gui/CommandDoc.cpp +++ b/src/Gui/CommandDoc.cpp @@ -81,7 +81,7 @@ DEF_STD_CMD(StdCmdOpen); StdCmdOpen::StdCmdOpen() : Command("Std_Open") { - // seting the + // setting the sGroup = QT_TR_NOOP("File"); sMenuText = QT_TR_NOOP("&Open..."); sToolTipText = QT_TR_NOOP("Open a document or import files"); @@ -163,7 +163,7 @@ DEF_STD_CMD_A(StdCmdImport); StdCmdImport::StdCmdImport() : Command("Std_Import") { - // seting the + // setting the sGroup = QT_TR_NOOP("File"); sMenuText = QT_TR_NOOP("&Import..."); sToolTipText = QT_TR_NOOP("Import a file in the active document"); @@ -249,7 +249,7 @@ DEF_STD_CMD_A(StdCmdExport); StdCmdExport::StdCmdExport() : Command("Std_Export") { - // seting the + // setting the sGroup = QT_TR_NOOP("File"); sMenuText = QT_TR_NOOP("&Export..."); sToolTipText = QT_TR_NOOP("Export an object in the active document"); @@ -367,7 +367,7 @@ DEF_STD_CMD_A(StdCmdExportGraphviz); StdCmdExportGraphviz::StdCmdExportGraphviz() : Command("Std_ExportGraphviz") { - // seting the + // setting the sGroup = QT_TR_NOOP("Tools"); sMenuText = QT_TR_NOOP("Dependency graph..."); sToolTipText = QT_TR_NOOP("Show the dependency graph of the objects in the active document"); @@ -577,7 +577,7 @@ DEF_STD_CMD_A(StdCmdProjectInfo); StdCmdProjectInfo::StdCmdProjectInfo() :Command("Std_ProjectInfo") { - // seting the + // setting the sGroup = QT_TR_NOOP("File"); sMenuText = QT_TR_NOOP("Project i&nformation..."); sToolTipText = QT_TR_NOOP("Show details of the currently active project"); @@ -609,7 +609,7 @@ DEF_STD_CMD_A(StdCmdProjectUtil); StdCmdProjectUtil::StdCmdProjectUtil() :Command("Std_ProjectUtil") { - // seting the + // setting the sGroup = QT_TR_NOOP("Tools"); sWhatsThis = "Std_ProjectUtil"; sMenuText = QT_TR_NOOP("Project utility..."); diff --git a/src/Gui/CommandFeat.cpp b/src/Gui/CommandFeat.cpp index e2c401c2d2..2a3fde3e30 100644 --- a/src/Gui/CommandFeat.cpp +++ b/src/Gui/CommandFeat.cpp @@ -45,7 +45,7 @@ DEF_STD_CMD(StdCmdFeatRecompute); StdCmdFeatRecompute::StdCmdFeatRecompute() :Command("Std_Recompute") { - // seting the + // setting the sGroup = QT_TR_NOOP("File"); sMenuText = QT_TR_NOOP("&Recompute"); sToolTipText = QT_TR_NOOP("Recompute feature or document"); diff --git a/src/Gui/CommandView.cpp b/src/Gui/CommandView.cpp index 00bb45ecb3..b65b84f726 100644 --- a/src/Gui/CommandView.cpp +++ b/src/Gui/CommandView.cpp @@ -2679,7 +2679,7 @@ DEF_3DV_CMD(StdCmdSceneInspector) StdCmdSceneInspector::StdCmdSceneInspector() : Command("Std_SceneInspector") { - // seting the + // setting the sGroup = QT_TR_NOOP("Tools"); sMenuText = QT_TR_NOOP("Scene inspector..."); sToolTipText = QT_TR_NOOP("Scene inspector"); @@ -2711,7 +2711,7 @@ DEF_STD_CMD_A(StdCmdTextureMapping) StdCmdTextureMapping::StdCmdTextureMapping() : Command("Std_TextureMapping") { - // seting the + // setting the sGroup = QT_TR_NOOP("Tools"); sMenuText = QT_TR_NOOP("Texture mapping..."); sToolTipText = QT_TR_NOOP("Texture mapping"); diff --git a/src/Gui/TaskView/TaskSelectLinkProperty.h b/src/Gui/TaskView/TaskSelectLinkProperty.h index 9a80699c81..6b873001e7 100644 --- a/src/Gui/TaskView/TaskSelectLinkProperty.h +++ b/src/Gui/TaskView/TaskSelectLinkProperty.h @@ -66,16 +66,16 @@ public: /// set the filter criterion (same as in constructor) bool setFilter(const char*); - /// set the TaskSelectLinkProperty active, means seting the selection and controls it + /// set the TaskSelectLinkProperty active, means setting the selection and control it void activate(void); - /// call this to accept the changes the user have made and put back to the Propterty (Ok) + /// call this to accept the changes the user has made and send back to the Propterty (Ok) bool accept(void); - /// This discard the changes of the user and leaf the Property untouched (Cancel) + /// This discards the changes of the user and leaves the Property untouched (Cancel) bool reject(void); /// send the selection to the Property for e.g. forced recomputation of a feature void sendSelection2Property(void); - /// checkes if the filter is current met + /// checks if the filter is currently met inline bool isSelectionValid(void) const {return Filter->match();} private Q_SLOTS: @@ -101,7 +101,7 @@ private: // selection filter for the session Gui::SelectionFilter *Filter; - // posible used propetry types, only one is used + // possible used property types, only one is used App::PropertyLinkSub *LinkSub; App::PropertyLinkList *LinkList; diff --git a/src/Mod/Assembly/App/Solver/Solver.h b/src/Mod/Assembly/App/Solver/Solver.h index 1005601f56..a79868abd0 100644 --- a/src/Mod/Assembly/App/Solver/Solver.h +++ b/src/Mod/Assembly/App/Solver/Solver.h @@ -354,7 +354,7 @@ struct placement_accessor { template void finalize(T& t) { //need to do it at once as setting every value step by step would always normalize the rotation and - //therefor give a false value + //therefore give a false value Base::Rotation rot(q0,q1,q2,q3); t.setRotation(rot); t.setPosition(vec); diff --git a/src/Mod/Draft/Draft.py b/src/Mod/Draft/Draft.py index c6fb5dec98..26738de28c 100644 --- a/src/Mod/Draft/Draft.py +++ b/src/Mod/Draft/Draft.py @@ -5226,7 +5226,7 @@ class _BezCurve(_DraftObject): def _segpoleslst(self,fp): """split the points into segments""" - if not fp.Closed and len(fp.Points) >= 2: #allow lower degree segement + if not fp.Closed and len(fp.Points) >= 2: #allow lower degree segment poles=fp.Points[1:] elif fp.Closed and len(fp.Points) >= fp.Degree: #drawable #poles=fp.Points[1:(fp.Degree*(len(fp.Points)//fp.Degree))]+fp.Points[0:1] diff --git a/src/Mod/Drawing/Gui/Command.cpp b/src/Mod/Drawing/Gui/Command.cpp index 8a06fa3f3b..995f02ed6a 100644 --- a/src/Mod/Drawing/Gui/Command.cpp +++ b/src/Mod/Drawing/Gui/Command.cpp @@ -432,7 +432,7 @@ DEF_STD_CMD_A(CmdDrawingOpenBrowserView); CmdDrawingOpenBrowserView::CmdDrawingOpenBrowserView() : Command("Drawing_OpenBrowserView") { - // seting the + // setting the sGroup = QT_TR_NOOP("Drawing"); sMenuText = QT_TR_NOOP("Open &browser view"); sToolTipText = QT_TR_NOOP("Opens the selected page in a browser view"); @@ -470,7 +470,7 @@ DEF_STD_CMD_A(CmdDrawingAnnotation); CmdDrawingAnnotation::CmdDrawingAnnotation() : Command("Drawing_Annotation") { - // seting the + // setting the sGroup = QT_TR_NOOP("Drawing"); sMenuText = QT_TR_NOOP("&Annotation"); sToolTipText = QT_TR_NOOP("Inserts an Annotation view in the active drawing"); @@ -518,7 +518,7 @@ DEF_STD_CMD_A(CmdDrawingClip); CmdDrawingClip::CmdDrawingClip() : Command("Drawing_Clip") { - // seting the + // setting the sGroup = QT_TR_NOOP("Drawing"); sMenuText = QT_TR_NOOP("&Clip"); sToolTipText = QT_TR_NOOP("Inserts a clip group in the active drawing"); @@ -563,7 +563,7 @@ DEF_STD_CMD_A(CmdDrawingSymbol); CmdDrawingSymbol::CmdDrawingSymbol() : Command("Drawing_Symbol") { - // seting the + // setting the sGroup = QT_TR_NOOP("Drawing"); sMenuText = QT_TR_NOOP("&Symbol"); sToolTipText = QT_TR_NOOP("Inserts a symbol from a svg file in the active drawing"); @@ -619,7 +619,7 @@ DEF_STD_CMD_A(CmdDrawingExportPage); CmdDrawingExportPage::CmdDrawingExportPage() : Command("Drawing_ExportPage") { - // seting the + // setting the sGroup = QT_TR_NOOP("File"); sMenuText = QT_TR_NOOP("&Export page..."); sToolTipText = QT_TR_NOOP("Export a page to an SVG file"); @@ -671,7 +671,7 @@ DEF_STD_CMD_A(CmdDrawingProjectShape); CmdDrawingProjectShape::CmdDrawingProjectShape() : Command("Drawing_ProjectShape") { - // seting the + // setting the sGroup = QT_TR_NOOP("Drawing"); sMenuText = QT_TR_NOOP("Project shape..."); sToolTipText = QT_TR_NOOP("Project shape onto a user-defined plane"); @@ -707,7 +707,7 @@ DEF_STD_CMD_A(CmdDrawingDraftView); CmdDrawingDraftView::CmdDrawingDraftView() : Command("Drawing_DraftView") { - // seting the + // setting the sGroup = QT_TR_NOOP("Drawing"); sMenuText = QT_TR_NOOP("&Draft View"); sToolTipText = QT_TR_NOOP("Inserts a Draft view of the selected object(s) in the active drawing"); @@ -738,7 +738,7 @@ DEF_STD_CMD_A(CmdDrawingSpreadsheetView); CmdDrawingSpreadsheetView::CmdDrawingSpreadsheetView() : Command("Drawing_SpreadsheetView") { - // seting the + // setting the sGroup = QT_TR_NOOP("Drawing"); sMenuText = QT_TR_NOOP("&Spreadsheet View"); sToolTipText = QT_TR_NOOP("Inserts a view of a selected spreadsheet in the active drawing"); diff --git a/src/Mod/Import/App/SCL/SimpleDataTypes.py b/src/Mod/Import/App/SCL/SimpleDataTypes.py index e7075aa411..a46f8cb786 100644 --- a/src/Mod/Import/App/SCL/SimpleDataTypes.py +++ b/src/Mod/Import/App/SCL/SimpleDataTypes.py @@ -185,7 +185,7 @@ class BINARY(str): self._fixed = fixed # Check implicit width if (width!=-1) and not fixed: - raise ValueError("The 'width' parameter is passed but 'fixed' is still false. Please explicitely set 'fixed' to True to avoid implicit declaration") + raise ValueError("The 'width' parameter is passed but 'fixed' is still false. Please explicitly set 'fixed' to True to avoid implicit declaration") # First check the string length if 'fixed' is set to True if fixed: if len(value) != width: diff --git a/src/Mod/Inspection/Gui/ViewProviderInspection.cpp b/src/Mod/Inspection/Gui/ViewProviderInspection.cpp index bb2184721d..5b88fd0336 100644 --- a/src/Mod/Inspection/Gui/ViewProviderInspection.cpp +++ b/src/Mod/Inspection/Gui/ViewProviderInspection.cpp @@ -141,7 +141,7 @@ void ViewProviderInspection::show(void) void ViewProviderInspection::attach(App::DocumentObject *pcFeat) { - // creats the standard viewing modes + // creates the standard viewing modes inherited::attach(pcFeat); SoShapeHints * flathints = new SoShapeHints; diff --git a/src/Mod/Mesh/Gui/ViewProviderCurvature.cpp b/src/Mod/Mesh/Gui/ViewProviderCurvature.cpp index 0699a24cbe..3c5235a266 100644 --- a/src/Mod/Mesh/Gui/ViewProviderCurvature.cpp +++ b/src/Mod/Mesh/Gui/ViewProviderCurvature.cpp @@ -242,7 +242,7 @@ void ViewProviderMeshCurvature::slotChangedObject(const App::DocumentObject& Obj void ViewProviderMeshCurvature::attach(App::DocumentObject *pcFeat) { - // creats the standard viewing modes + // creates the standard viewing modes inherited::attach(pcFeat); attachDocument(pcFeat->getDocument()); diff --git a/src/Mod/Mesh/Gui/ViewProviderTransform.cpp b/src/Mod/Mesh/Gui/ViewProviderTransform.cpp index c29833096f..e17238488d 100644 --- a/src/Mod/Mesh/Gui/ViewProviderTransform.cpp +++ b/src/Mod/Mesh/Gui/ViewProviderTransform.cpp @@ -68,7 +68,7 @@ ViewProviderMeshTransform::~ViewProviderMeshTransform() void ViewProviderMeshTransform::attach(App::DocumentObject *pcFeat) { - // creats the standard viewing modes + // creates the standard viewing modes ViewProviderMesh::attach(pcFeat); SoSeparator* pcEditRoot = new SoSeparator(); diff --git a/src/Mod/Mesh/Gui/ViewProviderTransformDemolding.cpp b/src/Mod/Mesh/Gui/ViewProviderTransformDemolding.cpp index 104a44a3d0..6fabc01364 100644 --- a/src/Mod/Mesh/Gui/ViewProviderTransformDemolding.cpp +++ b/src/Mod/Mesh/Gui/ViewProviderTransformDemolding.cpp @@ -76,7 +76,7 @@ ViewProviderMeshTransformDemolding::~ViewProviderMeshTransformDemolding() void ViewProviderMeshTransformDemolding::attach(App::DocumentObject *pcFeat) { - // creats the satandard viewing modes + // creates the standard viewing modes ViewProviderMesh::attach(pcFeat); SoGroup* pcDemoldRoot = new SoGroup(); diff --git a/src/Mod/Part/App/TopoShapePy.xml b/src/Mod/Part/App/TopoShapePy.xml index 4c23736dcf..3326a44370 100644 --- a/src/Mod/Part/App/TopoShapePy.xml +++ b/src/Mod/Part/App/TopoShapePy.xml @@ -312,7 +312,7 @@ The underlying geometry of the following shapes may change: For example, a circle may be transformed into an ellipse when applying an affinity transformation. It may also happen that -the circle then is represented as a b-spline curve. +the circle then is represented as a B-spline curve. The transformation is applied to: - all the curves which support edges of the shape, and @@ -514,7 +514,7 @@ makePerspectiveProjection(shape, pnt) - Make a compund shape out of mesh data. + Make a compound shape out of mesh data. Note: This should be used for rather small meshes only. @@ -522,8 +522,8 @@ Note: This should be used for rather small meshes only. Conversion of the complete geometry of a shape into NURBS geometry. For example, all curves supporting edges of the basis shape are converted -into BSpline curves, and all surfaces supporting its faces are converted -into BSpline surfaces. +into B-spline curves, and all surfaces supporting its faces are converted +into B-spline surfaces. @@ -534,7 +534,7 @@ into BSpline surfaces. This creates a cleaned copy of the shape with the triangulation removed. -This can be useful to reduce file size when exporting as a BRep file. +This can be useful to reduce file size when exporting as a BREP file. Warning: Use the cleaned shape with care because certain algorithms may work incorrectly if the shape has no internal triangulation any more. @@ -754,7 +754,7 @@ infos contains additional info on the solutions. It is a list of tuples: - List of coumpounds in this shape. + List of compounds in this shape. diff --git a/src/Mod/PartDesign/App/FeatureLoft.cpp b/src/Mod/PartDesign/App/FeatureLoft.cpp index 7736046952..fbf080d07b 100644 --- a/src/Mod/PartDesign/App/FeatureLoft.cpp +++ b/src/Mod/PartDesign/App/FeatureLoft.cpp @@ -139,7 +139,7 @@ App::DocumentObjectExecReturn *Loft::execute(void) mkTS.Build(); if (!mkTS.IsDone()) - return new App::DocumentObjectExecReturn("Loft could not be build"); + return new App::DocumentObjectExecReturn("Loft could not be built"); //build the shell use simulate to get the top and bottom wires in an easy way shells.push_back(mkTS.Shape()); diff --git a/src/Mod/Raytracing/Gui/Command.cpp b/src/Mod/Raytracing/Gui/Command.cpp index f470a50710..c0edaa8441 100644 --- a/src/Mod/Raytracing/Gui/Command.cpp +++ b/src/Mod/Raytracing/Gui/Command.cpp @@ -491,7 +491,7 @@ DEF_STD_CMD_A(CmdRaytracingExportProject); CmdRaytracingExportProject::CmdRaytracingExportProject() : Command("Raytracing_ExportProject") { - // seting the + // setting the sAppModule = "Raytracing"; sGroup = QT_TR_NOOP("File"); sMenuText = QT_TR_NOOP("&Export project..."); @@ -798,7 +798,7 @@ DEF_STD_CMD_A(CmdRaytracingResetCamera); CmdRaytracingResetCamera::CmdRaytracingResetCamera() : Command("Raytracing_ResetCamera") { - // seting the + // setting the sAppModule = "Raytracing"; sGroup = QT_TR_NOOP("Raytracing"); sMenuText = QT_TR_NOOP("&Reset Camera"); diff --git a/src/Mod/TechDraw/Gui/Command.cpp b/src/Mod/TechDraw/Gui/Command.cpp index b99a4c057b..6e5b78a07c 100644 --- a/src/Mod/TechDraw/Gui/Command.cpp +++ b/src/Mod/TechDraw/Gui/Command.cpp @@ -637,7 +637,7 @@ DEF_STD_CMD_A(CmdTechDrawClip); CmdTechDrawClip::CmdTechDrawClip() : Command("TechDraw_Clip") { - // seting the + // setting the sGroup = QT_TR_NOOP("TechDraw"); sMenuText = QT_TR_NOOP("&Clip"); sToolTipText = QT_TR_NOOP("Inserts a clip group in the active drawing"); @@ -999,7 +999,7 @@ DEF_STD_CMD_A(CmdTechDrawSpreadsheet); CmdTechDrawSpreadsheet::CmdTechDrawSpreadsheet() : Command("TechDraw_Spreadsheet") { - // seting the + // setting the sGroup = QT_TR_NOOP("TechDraw"); sMenuText = QT_TR_NOOP("Spreadsheet"); sToolTipText = QT_TR_NOOP("Inserts a view of a selected spreadsheet into a drawing"); diff --git a/src/Tools/SubWCRev.py b/src/Tools/SubWCRev.py index 389d8e6575..a5622df13f 100644 --- a/src/Tools/SubWCRev.py +++ b/src/Tools/SubWCRev.py @@ -276,7 +276,7 @@ class GitControl(VersionControl): else: # guess self.branch = '(%s)' % \ os.popen("git describe --all --dirty").read().strip() - #if the branch name conainted any slashes but was not a remote + #if the branch name contained any slashes but was not a remote #there might be not result by now. Hence we assume origin if self.url == "Unknown": for i in info: diff --git a/src/Tools/generateBase/generateMetaModel_Module.xsd b/src/Tools/generateBase/generateMetaModel_Module.xsd index dfd25df4a8..ec142e78c5 100644 --- a/src/Tools/generateBase/generateMetaModel_Module.xsd +++ b/src/Tools/generateBase/generateMetaModel_Module.xsd @@ -1,11 +1,4 @@ - - - - - - - @@ -98,7 +91,7 @@ - Represent a Feature in the modue + Represent a Feature in the module @@ -115,7 +108,7 @@ - Represnts a Document Object in the module + Represents a Document Object in the module @@ -127,7 +120,7 @@ - Creats a GuiCommand in this module + Creates a GuiCommand in this module @@ -140,7 +133,7 @@ - Defines a class property + Defines a class property @@ -172,7 +165,7 @@ - Defins a ViewProvider for a Object + Defines a ViewProvider for an Object