From Paul Martz, "The attached fixes a few issues that are present when ref_ptr implicit casting is disabled."

This commit is contained in:
Robert Osfield
2012-02-21 17:20:58 +00:00
parent 0b88ad24b2
commit da44e4f4b6
3 changed files with 3 additions and 3 deletions

View File

@@ -954,7 +954,7 @@ void Viewer::eventTraversal()
hitr != _eventHandlers.end();
++hitr)
{
(*hitr)->handleWithCheckAgainstIgnoreHandledEventsMask( *event, *this, 0, _eventVisitor);
(*hitr)->handleWithCheckAgainstIgnoreHandledEventsMask( *event, *this, 0, _eventVisitor.get());
}
}