]> git.mxchange.org Git - simgear.git/commitdiff
Cosmetic updates.
authorehofman <ehofman>
Sun, 23 Oct 2005 14:04:42 +0000 (14:04 +0000)
committerehofman <ehofman>
Sun, 23 Oct 2005 14:04:42 +0000 (14:04 +0000)
simgear/props/props.cxx
simgear/scene/material/mat.cxx

index dc7ccd6b31e1bf2c8e1acd501bbe8b7e69de201a..cd993d5fdd663ca5f65009a7c72ba0cf24bd41b4 100644 (file)
@@ -912,13 +912,13 @@ SGPropertyNode::getChildren (const char * name) const
 
 
 /**
- * Revove child by position.
+ * Remove child by position.
  */
 SGPropertyNode_ptr
 SGPropertyNode::removeChild (int pos, bool keep)
 {
   SGPropertyNode_ptr node;
-  if (pos < 0 || pos > _children.size() - 1)
+  if (pos < 0 || pos >= _children.size())
     return node;
 
   vector<SGPropertyNode_ptr>::iterator it = _children.begin();
index a886f33e0484b87d8d71f94d615fe9dcb2f78508..1c1258d9597a8c9672106cac228e398cd85abdb3 100644 (file)
@@ -1,4 +1,4 @@
-// mat.cxx -- class to handle material properties
+// mat.cxx -- class to handle material properties
 //
 // Written by Curtis Olson, started May 1998.
 //