Skip to content

Commit

Permalink
Put ancestor's name rather than ancestor into full name re #5659
Browse files Browse the repository at this point in the history
Signed-off-by: Karl Palmen <karl.palmen@stfc.ac.uk>
  • Loading branch information
KarlPalmen committed Sep 7, 2012
1 parent 0697b0d commit c598cf7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ namespace Geometry
std::ostringstream oss;
std::vector<boost::shared_ptr<const IComponent> >::reverse_iterator rit;
for ( rit=ancestors.rbegin() ; rit < ancestors.rend(); ++rit ) {
oss << *rit << "/";
oss << (*rit)->getName() << "/";
}
oss << this->getName();
return oss.str();
Expand Down

0 comments on commit c598cf7

Please sign in to comment.