Merge branch 'delete_selected_tree_node' of https://github.com/qPCR4vir/nana into qPCR4vir-delete_selected_tree_node

This commit is contained in:
Jinhao 2018-12-07 06:53:19 +08:00
commit c4bc53d383

View File

@ -63,7 +63,7 @@ namespace detail
{ {
while (child) while (child)
{ {
if (child->owner == this) if (child == this)
return true; return true;
child = child->owner; child = child->owner;