Fix typos
This commit is contained in:
@@ -158,7 +158,7 @@ public:
|
||||
* These all function as per documentation in Enumeration
|
||||
*/
|
||||
//@{
|
||||
/** setting the enumaration string list
|
||||
/** setting the enumeration string list
|
||||
* The list is a NULL terminated array of pointers to a const char* string
|
||||
* \code
|
||||
* const char enums[] = {"Black","White","Other",NULL}
|
||||
@@ -166,7 +166,7 @@ public:
|
||||
*/
|
||||
void setEnums(const char** plEnums);
|
||||
|
||||
/** setting the enumaration string as vector of strings
|
||||
/** setting the enumeration string as vector of strings
|
||||
* This makes the enumeration custom.
|
||||
*/
|
||||
void setEnums(const std::vector<std::string> &Enums);
|
||||
|
||||
@@ -113,7 +113,7 @@ void Persistence::dumpToStream(std::ostream& stream, int compression)
|
||||
writer.putNextEntry("Persistence.xml");
|
||||
writer.setMode("BinaryBrep");
|
||||
|
||||
//save the content (we need to encapsulte it with xml tags to be able to read single element xmls like happen for properties)
|
||||
//save the content (we need to encapsulate it with xml tags to be able to read single element xmls like happen for properties)
|
||||
writer.Stream() << "<Content>" << std::endl;
|
||||
Save(writer);
|
||||
writer.Stream() << "</Content>";
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string notr="ture">Form</string>
|
||||
<string notr="true">Form</string>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
|
||||
@@ -1118,7 +1118,7 @@ bool MeshEvalCorruptedFacets::Evaluate()
|
||||
const MeshFacetArray& rFaces = _rclMesh.GetFacets();
|
||||
|
||||
for (const auto & it : rFaces) {
|
||||
// dupicated point indices
|
||||
// duplicated point indices
|
||||
if (it.IsDegenerated())
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -1325,7 +1325,7 @@ unsigned int TopoShape::getMemSize () const
|
||||
if (shape.IsNull())
|
||||
continue;
|
||||
|
||||
// add the size of the underlying geomtric data
|
||||
// add the size of the underlying geometric data
|
||||
Handle(TopoDS_TShape) tshape = shape.TShape();
|
||||
memsize += tshape->DynamicType()->Size();
|
||||
|
||||
|
||||
@@ -1540,7 +1540,7 @@ protected:
|
||||
}
|
||||
void makeCts_1MorePoint1Ellipse(bool& selAllowed)
|
||||
{
|
||||
//distance between 1 point and elipse/arc of... not supported yet.
|
||||
//distance between 1 point and ellipse/arc of... not supported yet.
|
||||
if (availableConstraint == AvailableConstraint::FIRST) {
|
||||
//nothing yet
|
||||
//availableConstraint = AvailableConstraint::RESET;
|
||||
|
||||
@@ -390,7 +390,7 @@ def handle():
|
||||
ALTCSS = f.read()
|
||||
HTML = HTML.replace("<!--QSS-->","<style type=\"text/css\">"+ALTCSS+"</style>")
|
||||
|
||||
# handle file thumbnail icons visiblity and size
|
||||
# handle file thumbnail icons visibility and size
|
||||
|
||||
if not FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Start").GetBool("ShowFileThumbnailIcons",True):
|
||||
HTML = HTML.replace("display: block; /* thumb icons display */","display: none; /* thumb icons display */")
|
||||
|
||||
Reference in New Issue
Block a user