Start cleaning icon.

This commit is contained in:
jmsgrogan 2023-01-19 15:42:34 +00:00
parent 97afa782a0
commit 3915a40c96
10 changed files with 172 additions and 33 deletions

View file

@ -41,7 +41,7 @@ public:
void setName(const std::string& name);
void setLocation(const Point& loc);
virtual void setLocation(const Point& loc);
virtual void update(SceneInfo* sceneInfo);

View file

@ -5,7 +5,7 @@
PathNode::PathNode(const Point& loc, const std::string& psPath)
: GeometryNode(loc),
mPathString(psPath)
mPathString(psPath)
{
}