diff Framework/Layers/LayerSourceBase.cpp @ 121:e66b2c757790 wasm

displaying rt-struct
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 04 Oct 2017 17:53:47 +0200
parents 2eca030792aa
children e2fe9352f240
line wrap: on
line diff
--- a/Framework/Layers/LayerSourceBase.cpp	Wed Oct 04 15:51:34 2017 +0200
+++ b/Framework/Layers/LayerSourceBase.cpp	Wed Oct 04 17:53:47 2017 +0200
@@ -31,12 +31,12 @@
     {
     private:
       std::auto_ptr<ILayerRenderer>  layer_;
-      const Slice&                   slice_;
+      const CoordinateSystem3D&      slice_;
       bool                           isError_;
       
     public:
       LayerReadyFunctor(ILayerRenderer* layer,
-                        const Slice& slice,
+                        const CoordinateSystem3D& slice,
                         bool isError) :
         layer_(layer),
         slice_(slice),
@@ -73,7 +73,7 @@
   }
 
   void LayerSourceBase::NotifyLayerReady(ILayerRenderer* layer,
-                                         const Slice& slice,
+                                         const CoordinateSystem3D& slice,
                                          bool isError)
   {
     LayerReadyFunctor functor(layer, slice, isError);