Skip to content

Commit

Permalink
Logical wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
lemonrong committed Aug 21, 2015
1 parent 34620b6 commit 674fbb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osg3DViewer/xTreeModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ QVariant xTreeModel::data(const QModelIndex &index, int role) const
{
QString description;

for (size_t i = 0; node->getNumDescriptions(); i++)
for (size_t i = 0; i<node->getNumDescriptions(); i++)
description += QString::fromStdString(node->getDescription(i)) + "\n";
}
}
Expand Down

0 comments on commit 674fbb1

Please sign in to comment.