Skip to content
Snippets Groups Projects
Commit fbc873a2 authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

ENH: ViewerManager add assert

parent 26c010bc
No related branches found
No related tags found
No related merge requests found
......@@ -115,6 +115,16 @@ ImageViewerManagerModel
currentComponent.pPixelModel = pixelModel;
currentComponent.pCurveWidget = curveWidget;
assert(currentComponent.pLayer);
assert(currentComponent.pReader);
assert(currentComponent.pRendering);
assert(currentComponent.pVisuView);
assert(currentComponent.pWidgetController);
assert(currentComponent.pRenderFuntion);
assert(currentComponent.pPixelView);
assert(currentComponent.pPixelModel);
assert(currentComponent.pCurveWidget);
/** Add the the struct in the list*/
m_ObjectTrackedList.push_back(currentComponent);
......
......@@ -811,6 +811,7 @@ ImageViewerManagerViewGUI
unsigned int nbComponent = reader->GetOutput()->GetNumberOfComponentsPerPixel();
//FIXME make sure this is called only when the renderingFunction is a StandardRenderingFunctionType
assert(m_ImageViewerManagerModel->GetObjectList().at(selectedItem-1).pRenderFuntion.GetPointer());
StandardRenderingFunctionType::Pointer renderingFunction = static_cast<StandardRenderingFunctionType*>(m_ImageViewerManagerModel->GetObjectList().at(selectedItem-1).pRenderFuntion.GetPointer());
guiViewerSetupColorMode->set();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment