diff --git a/ChangeLog.txt b/ChangeLog.txt index b459e6d7062e..034b5ae4188f 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -750,7 +750,7 @@ Version: V0.1B78 Date: Sun Nov 23 13:15:15 2003 +++++++++++++++++++++++++++++++ Version: V0.1B77 Date: Fri Nov 14 14:56:14 2003 +++++++++++++++++++++++++++++++ * Finished Setup stuff - * Removed all relativ paths + * Removed all relative paths * config HomePath is now not in bin anymore * all config files one dir up * FC runs now from every directory @@ -1012,7 +1012,7 @@ Version: V0.1B26 Date: Tue Jan 21 05:59:01 2003 +++++++++++++++++++++++++++++++ Version: V0.1B25 Date: Sun Jan 19 18:20:51 2003 +++++++++++++++++++++++++++++++ * Big Linux port patch from Vaclav - - some fixes on implicite type conversion (Vaclav) + - some fixes on implicit type conversion (Vaclav) - moving all .cxx to .cpp mainly in gui - moving DlgCusomizeImpl to Imp - and InitGui to GuiInit diff --git a/src/App/ExtensionContainer.h b/src/App/ExtensionContainer.h index e7034d2dddfd..4f0cd0ba5201 100644 --- a/src/App/ExtensionContainer.h +++ b/src/App/ExtensionContainer.h @@ -59,7 +59,7 @@ namespace App { * multiple inheritance. If added from python it is a runtime extension and not visible from type. * Hence querying existing extensions of an object and accessing its methods works not by type * casting but by the interface provided in ExtensionContainer. The default workflow is to query if - * an extension exists and then get the extension obejct. No matter if added from python or c++ this + * an extension exists and then get the extension object. No matter if added from python or c++ this * interface works always the same. * @code * if (object->hasExtension(GroupExtension::getClassTypeId())) { diff --git a/src/App/PropertyGeo.h b/src/App/PropertyGeo.h index 5b07df8628e1..78292913660f 100644 --- a/src/App/PropertyGeo.h +++ b/src/App/PropertyGeo.h @@ -342,7 +342,7 @@ class AppExport PropertyPlacement: public Property Base::Placement _cPos; }; -/** the general Link Poperty +/** the general Link Property * Main Purpose of this property is to Link Objects and Features in a document. */ class AppExport PropertyPlacementLink : public PropertyLink diff --git a/src/App/PropertyLinks.h b/src/App/PropertyLinks.h index c31e52d5016f..1ab7b1a34cdd 100644 --- a/src/App/PropertyLinks.h +++ b/src/App/PropertyLinks.h @@ -242,7 +242,7 @@ class AppExport PropertyLinkListGlobal : public PropertyLinkList PropertyLinkListGlobal() {_pcScope = LinkScope::Global;}; }; -/** the Link Poperty with sub elements +/** the Link Property with sub elements * This property links an object and a defined sequence of * sub elements. These subelements (like Edges of a Shape) * are stored as names, which can be resolved by the diff --git a/src/Base/Parameter.cpp b/src/Base/Parameter.cpp index e7010b7748d1..866ed3fce673 100644 --- a/src/Base/Parameter.cpp +++ b/src/Base/Parameter.cpp @@ -411,7 +411,7 @@ void ParameterGrp::SetBool(const char* Name, bool bValue) { // find or create the Element DOMElement *pcElem = FindOrCreateElement(_pGroupNode,"FCBool",Name); - // and set the vaue + // and set the value pcElem->setAttribute(XStr("Value").unicodeForm(), XStr(bValue?"1":"0").unicodeForm()); // trigger observer Notify(Name); @@ -476,7 +476,7 @@ void ParameterGrp::SetInt(const char* Name, long lValue) char cBuf[256]; // find or create the Element DOMElement *pcElem = FindOrCreateElement(_pGroupNode,"FCInt",Name); - // and set the vaue + // and set the value sprintf(cBuf,"%li",lValue); pcElem->setAttribute(XStr("Value").unicodeForm(), XStr(cBuf).unicodeForm()); // trigger observer @@ -537,7 +537,7 @@ void ParameterGrp::SetUnsigned(const char* Name, unsigned long lValue) char cBuf[256]; // find or create the Element DOMElement *pcElem = FindOrCreateElement(_pGroupNode,"FCUInt",Name); - // and set the vaue + // and set the value sprintf(cBuf,"%lu",lValue); pcElem->setAttribute(XStr("Value").unicodeForm(), XStr(cBuf).unicodeForm()); // trigger observer diff --git a/src/Gui/DocumentPy.xml b/src/Gui/DocumentPy.xml index 561435afc695..461e5df80b84 100644 --- a/src/Gui/DocumentPy.xml +++ b/src/Gui/DocumentPy.xml @@ -121,7 +121,7 @@ - Returns True if the document is marked as modified, and False otherwse + Returns True if the document is marked as modified, and False otherwise diff --git a/src/Gui/Stylesheets/Dark-blue.qss b/src/Gui/Stylesheets/Dark-blue.qss index 3ae60f006bdc..82d4e9a8b7c6 100644 --- a/src/Gui/Stylesheets/Dark-blue.qss +++ b/src/Gui/Stylesheets/Dark-blue.qss @@ -64,7 +64,7 @@ KNOWN BUGS and TO DO /*================================================================================================== Reset elements ==================================================================================================*/ -/* Reseting everything helps to unify styles across different operating systems */ +/* Resetting everything helps to unify styles across different operating systems */ * { padding: 0px; margin: 0px; @@ -497,7 +497,7 @@ QTabBar { background-color: transparent; } -/* Workaround for QTabBars created from docked QDockWidgets which don't draw the border if not set and reseted as follows: */ +/* Workaround for QTabBars created from docked QDockWidgets which don't draw the border if not set and reset as follows: */ QTabBar { border-top: 1px solid #5a5a5a; /* set color for all QTabBars */ } diff --git a/src/Gui/Stylesheets/Dark-green.qss b/src/Gui/Stylesheets/Dark-green.qss index b848011ab431..f9284ccb547a 100644 --- a/src/Gui/Stylesheets/Dark-green.qss +++ b/src/Gui/Stylesheets/Dark-green.qss @@ -64,7 +64,7 @@ KNOWN BUGS and TO DO /*================================================================================================== Reset elements ==================================================================================================*/ -/* Reseting everything helps to unify styles across different operating systems */ +/* Resetting everything helps to unify styles across different operating systems */ * { padding: 0px; margin: 0px; @@ -497,7 +497,7 @@ QTabBar { background-color: transparent; } -/* Workaround for QTabBars created from docked QDockWidgets which don't draw the border if not set and reseted as follows: */ +/* Workaround for QTabBars created from docked QDockWidgets which don't draw the border if not set and reset as follows: */ QTabBar { border-top: 1px solid #5a5a5a; /* set color for all QTabBars */ } diff --git a/src/Gui/Stylesheets/Dark-orange.qss b/src/Gui/Stylesheets/Dark-orange.qss index f912f93d0a53..e9c2477bef77 100644 --- a/src/Gui/Stylesheets/Dark-orange.qss +++ b/src/Gui/Stylesheets/Dark-orange.qss @@ -64,7 +64,7 @@ KNOWN BUGS and TO DO /*================================================================================================== Reset elements ==================================================================================================*/ -/* Reseting everything helps to unify styles across different operating systems */ +/* Resetting everything helps to unify styles across different operating systems */ * { padding: 0px; margin: 0px; @@ -497,7 +497,7 @@ QTabBar { background-color: transparent; } -/* Workaround for QTabBars created from docked QDockWidgets which don't draw the border if not set and reseted as follows: */ +/* Workaround for QTabBars created from docked QDockWidgets which don't draw the border if not set and reset as follows: */ QTabBar { border-top: 1px solid #5a5a5a; /* set color for all QTabBars */ } diff --git a/src/Gui/Stylesheets/Light-blue.qss b/src/Gui/Stylesheets/Light-blue.qss index 8c0cdd155537..49d1697aeadf 100644 --- a/src/Gui/Stylesheets/Light-blue.qss +++ b/src/Gui/Stylesheets/Light-blue.qss @@ -64,7 +64,7 @@ KNOWN BUGS and TO DO /*================================================================================================== Reset elements ==================================================================================================*/ -/* Reseting everything helps to unify styles across different operating systems */ +/* Resetting everything helps to unify styles across different operating systems */ * { padding: 0px; margin: 0px; @@ -497,7 +497,7 @@ QTabBar { background-color: transparent; } -/* Workaround for QTabBars created from docked QDockWidgets which don't draw the border if not set and reseted as follows: */ +/* Workaround for QTabBars created from docked QDockWidgets which don't draw the border if not set and reset as follows: */ QTabBar { border-top: 1px solid #d2d2d2; /* set color for all QTabBars */ } diff --git a/src/Gui/Stylesheets/Light-green.qss b/src/Gui/Stylesheets/Light-green.qss index f3205ac848b7..c502316dbebc 100644 --- a/src/Gui/Stylesheets/Light-green.qss +++ b/src/Gui/Stylesheets/Light-green.qss @@ -64,7 +64,7 @@ KNOWN BUGS and TO DO /*================================================================================================== Reset elements ==================================================================================================*/ -/* Reseting everything helps to unify styles across different operating systems */ +/* Resetting everything helps to unify styles across different operating systems */ * { padding: 0px; margin: 0px; @@ -497,7 +497,7 @@ QTabBar { background-color: transparent; } -/* Workaround for QTabBars created from docked QDockWidgets which don't draw the border if not set and reseted as follows: */ +/* Workaround for QTabBars created from docked QDockWidgets which don't draw the border if not set and reset as follows: */ QTabBar { border-top: 1px solid #d2d2d2; /* set color for all QTabBars */ } diff --git a/src/Gui/Stylesheets/Light-orange.qss b/src/Gui/Stylesheets/Light-orange.qss index d31304859bdd..2ec8b681bf38 100644 --- a/src/Gui/Stylesheets/Light-orange.qss +++ b/src/Gui/Stylesheets/Light-orange.qss @@ -64,7 +64,7 @@ KNOWN BUGS and TO DO /*================================================================================================== Reset elements ==================================================================================================*/ -/* Reseting everything helps to unify styles across different operating systems */ +/* Resetting everything helps to unify styles across different operating systems */ * { padding: 0px; margin: 0px; @@ -497,7 +497,7 @@ QTabBar { background-color: transparent; } -/* Workaround for QTabBars created from docked QDockWidgets which don't draw the border if not set and reseted as follows: */ +/* Workaround for QTabBars created from docked QDockWidgets which don't draw the border if not set and reset as follows: */ QTabBar { border-top: 1px solid #d2d2d2; /* set color for all QTabBars */ } diff --git a/src/Gui/View3DViewerPy.cpp b/src/Gui/View3DViewerPy.cpp index dc5c3d8d4371..1e5fd9d40e22 100644 --- a/src/Gui/View3DViewerPy.cpp +++ b/src/Gui/View3DViewerPy.cpp @@ -63,9 +63,9 @@ void View3DInventorViewerPy::init_type() add_varargs_method("seekToPoint",&View3DInventorViewerPy::seekToPoint,"seekToPoint(tuple) -> None\n" "Initiate a seek action towards the 3D intersection of the scene and the\n" "ray from the screen coordinate's point and in the same direction as the\n" - "camera is pointing. If the tuple has two entries it is interpretet as the\n" + "camera is pointing. If the tuple has two entries it is interpreted as the\n" "screen coordinates xy and the intersection point with the scene is\n" - "calculated. If three entries are given it is interpretet as the intersection\n" + "calculated. If three entries are given it is interpreted as the intersection\n" "point xyz and the seek is done towards this point" ); add_varargs_method("setFocalDistance",&View3DInventorViewerPy::setFocalDistance,"setFocalDistance(float) -> None\n"); diff --git a/src/Mod/Fem/feminout/writeFenicsXDMF.py b/src/Mod/Fem/feminout/writeFenicsXDMF.py index 4aa17093952c..9e7f01b45998 100644 --- a/src/Mod/Fem/feminout/writeFenicsXDMF.py +++ b/src/Mod/Fem/feminout/writeFenicsXDMF.py @@ -246,7 +246,7 @@ def write_fenics_mesh_xdmf(fem_mesh_obj, outputfile, group_values_dict={}, encod base_geometry = ET.SubElement(base_grid, "Geometry") # TODO: for the general mesh: write out topology and geometry in grid node - # TOOD: for every marked group write own grid node with topology (ref if cells) + # TODO: for every marked group write own grid node with topology (ref if cells) # geometry ref, attribute ##################################### diff --git a/src/Mod/Mesh/App/Core/Elements.cpp b/src/Mod/Mesh/App/Core/Elements.cpp index ea6cc7a0d9e1..5fcbc6381cd3 100644 --- a/src/Mod/Mesh/App/Core/Elements.cpp +++ b/src/Mod/Mesh/App/Core/Elements.cpp @@ -810,7 +810,7 @@ int MeshGeomFacet::IntersectWithFacet (const MeshGeomFacet& rclFacet, // With extremely acute-angled triangles it may happen that the algorithm // claims an intersection but the intersection points are far outside the - // model. So, a plausability check is to verify that the intersection points + // model. So, a plausibility check is to verify that the intersection points // are inside the bounding boxes of both triangles. Base::BoundBox3f box1 = this->GetBoundBox(); if (!box1.IsInBox(rclPt0) || !box1.IsInBox(rclPt1)) diff --git a/src/Mod/Mesh/App/Core/Triangulation.cpp b/src/Mod/Mesh/App/Core/Triangulation.cpp index 253480e15c43..4dae7c8a8cff 100644 --- a/src/Mod/Mesh/App/Core/Triangulation.cpp +++ b/src/Mod/Mesh/App/Core/Triangulation.cpp @@ -382,7 +382,7 @@ bool EarClippingTriangulator::Triangulate::Process(const std::vector nextRefTypeHint; /** - * @brief reachableModes. List of modes that can be reached by selecing + * @brief reachableModes. List of modes that can be reached by selecting * more references. Is a map, where key is the mode that can be reached, * and value is a list of reference sequences that can be added to reach * the mode (stuff already linked is omitted from these lists; only extra diff --git a/src/Mod/PartDesign/Gui/CommandBody.cpp b/src/Mod/PartDesign/Gui/CommandBody.cpp index 34e68d8f02ed..0453bd227d1f 100644 --- a/src/Mod/PartDesign/Gui/CommandBody.cpp +++ b/src/Mod/PartDesign/Gui/CommandBody.cpp @@ -609,7 +609,7 @@ void CmdPartDesignMoveTip::activated(int iMsg) doCommand(Gui,"Gui.activeDocument().show(\"%s\")", selFeature->getNameInDocument()); } - // TOOD: Hide all datum features after the Tip feature? But the user might have already hidden some and wants to see + // TODO: Hide all datum features after the Tip feature? But the user might have already hidden some and wants to see // others, so we would have to remember their state somehow updateActive(); } diff --git a/src/Mod/PartDesign/Gui/TaskPrimitiveParameters.cpp b/src/Mod/PartDesign/Gui/TaskPrimitiveParameters.cpp index 1017c48ac6ff..48da6a07d767 100644 --- a/src/Mod/PartDesign/Gui/TaskPrimitiveParameters.cpp +++ b/src/Mod/PartDesign/Gui/TaskPrimitiveParameters.cpp @@ -639,7 +639,7 @@ void TaskBoxPrimitives::setPrimitive(QString name) // Execute the Python block // No need to open a transaction because this is already done in the command - // class or when starting to edit a primitve. + // class or when starting to edit a primitive. Gui::Command::runCommand(Gui::Command::Doc, cmd.toUtf8()); Gui::Command::runCommand(Gui::Command::Doc, "App.ActiveDocument.recompute()"); } diff --git a/src/Mod/PartDesign/Gui/TaskTransformedParameters.h b/src/Mod/PartDesign/Gui/TaskTransformedParameters.h index f6ffdc5d49d0..2986338ca339 100644 --- a/src/Mod/PartDesign/Gui/TaskTransformedParameters.h +++ b/src/Mod/PartDesign/Gui/TaskTransformedParameters.h @@ -151,7 +151,7 @@ protected Q_SLOTS: PartDesignGui::ViewProviderTransformed *getTopTransformedView () const; /** - * Returns the base transformated object + * Returns the base transformed object * For stand alone features it will be objects associated with this object * For features inside multitransform it will be the base multitransform object */ diff --git a/src/Mod/Path/App/Area.cpp b/src/Mod/Path/App/Area.cpp index 60f0ee16d045..3afd055cf696 100644 --- a/src/Mod/Path/App/Area.cpp +++ b/src/Mod/Path/App/Area.cpp @@ -3213,7 +3213,7 @@ void Area::toPath(Toolpath &path, const std::list &shapes, (pstart.*setter)(resume_height); gp_Pnt plast,p; - // initial vertial rapid pull up to retraction (or start Z height if higher) + // initial vertical rapid pull up to retraction (or start Z height if higher) (p.*setter)(std::max(retraction,(pstart.*getter)())); addGCode(false,path,plast,p,"G0"); plast = p; @@ -3225,7 +3225,7 @@ void Area::toPath(Toolpath &path, const std::list &shapes, plast = p; p = pstart; } - // vertial rapid down to feed start + // vertical rapid down to feed start addGCode(false,path,plast,p,"G0"); plast = p; diff --git a/src/Mod/Path/libarea/kurve/offset.cpp b/src/Mod/Path/libarea/kurve/offset.cpp index 0d8f9e0f8c4c..6116903b4c98 100644 --- a/src/Mod/Path/libarea/kurve/offset.cpp +++ b/src/Mod/Path/libarea/kurve/offset.cpp @@ -69,7 +69,7 @@ namespace geoff_geometry { bool bClosed = Closed(); int nspans = nSpans(); if(bClosed) { - Get(nspans, curSpan, true); // assign previus span for closed + Get(nspans, curSpan, true); // assign previous span for closed prevSpanOff = curSpan.Offset(offset); nspans++; // read first again diff --git a/src/Mod/Robot/App/Simulation.h b/src/Mod/Robot/App/Simulation.h index 4d8c69722e67..5456afafe153 100644 --- a/src/Mod/Robot/App/Simulation.h +++ b/src/Mod/Robot/App/Simulation.h @@ -55,7 +55,7 @@ class RobotExport Simulation void step(double tick); void setToWaypoint(unsigned int n); void setToTime(float t); - // apply the start axis angles and set to time 0. Restors the exact start position + // apply the start axis angles and set to time 0. Restores the exact start position void reset(void); double Pos; diff --git a/src/Mod/Sandbox/Gui/GLGraphicsView.cpp b/src/Mod/Sandbox/Gui/GLGraphicsView.cpp index 4be5f6b00d4f..368c76de3848 100644 --- a/src/Mod/Sandbox/Gui/GLGraphicsView.cpp +++ b/src/Mod/Sandbox/Gui/GLGraphicsView.cpp @@ -115,7 +115,7 @@ void GraphicsView::resizeEvent(QResizeEvent *event) //QDialog *dialog = new QDialog(0, Qt::Window | Qt::CustomizeWindowHint | Qt::WindowTitleHint); ////dialog->setWindowOpacity(0.8); -//dialog->setWindowTitle(tr("Titel")); +//dialog->setWindowTitle(tr("Title")); //dialog->setLayout(new QVBoxLayout); //dialog->layout()->addWidget(new QLabel(tr("Use mouse wheel to zoom model, and click and drag to rotate model"))); //dialog->layout()->addWidget(new QLabel(tr("Move the sun around to change the light position"))); diff --git a/src/Mod/Spreadsheet/App/Spreadsheet_legacy.py b/src/Mod/Spreadsheet/App/Spreadsheet_legacy.py index b6245c17588f..e00a4c945c1d 100644 --- a/src/Mod/Spreadsheet/App/Spreadsheet_legacy.py +++ b/src/Mod/Spreadsheet/App/Spreadsheet_legacy.py @@ -832,7 +832,7 @@ def update(self): self.table.item(r,c).setBackground(brush) def changeCell(self,r,c,value=None): - "changes the contens of a cell" + "changes the contents of a cell" if self.doNotChange: if DEBUG: print("DoNotChange flag is set") self.doNotChange = False diff --git a/src/Mod/TechDraw/App/DrawViewDimension.cpp b/src/Mod/TechDraw/App/DrawViewDimension.cpp index 81f44c6df708..70d072b7bf33 100644 --- a/src/Mod/TechDraw/App/DrawViewDimension.cpp +++ b/src/Mod/TechDraw/App/DrawViewDimension.cpp @@ -166,7 +166,7 @@ void DrawViewDimension::onChanged(const App::Property* prop) } if (prop == &Arbitrary) { if (!Arbitrary.getValue()) { - FormatSpec.setValue(getDefaultFormatSpec().c_str()); //restore a useable FormatSpec + FormatSpec.setValue(getDefaultFormatSpec().c_str()); //restore a usable FormatSpec } }