Changed tr1 shared_ptr for QSharedPointers and QWeakPointers.

This commit is contained in:
Tats
2015-07-17 13:41:55 -06:00
parent fce0715c5a
commit aef4f2d8d8
14 changed files with 113 additions and 135 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ MShape* DestinationGLCanvas::getShapeFromMappingId(uid mappingId) const
if (mappingId == NULL_UID)
return NULL;
else
return getMainWindow()->getMappingManager().getMappingById(mappingId)->getShape().get();
return getMainWindow()->getMappingManager().getMappingById(mappingId)->getShape().data();
}
ShapeGraphicsItem* DestinationGLCanvas::getShapeGraphicsItemFromMappingId(uid mappingId) const