Skip to content
Snippets Groups Projects
Commit 80e83073 authored by Otmane Lahlou's avatar Otmane Lahlou
Browse files

ENH : dimension set with static value

parent 76986c48
No related branches found
No related tags found
No related merge requests found
......@@ -83,12 +83,12 @@ public :
itkTypeMacro( OrthoRectificationFilter, StreamingResampleImageFilter );
/** Accessors */
virtual void SetMapProjection (MapProjectionType* _arg)
virtual void SetMapProjection (MapProjectionType* arg)
{
if (this->m_MapProjection != _arg)
if (this->m_MapProjection != arg)
{
this->m_MapProjection = _arg;
m_CompositeTransform->SetFirstTransform(_arg);
this->m_MapProjection = arg;
m_CompositeTransform->SetFirstTransform(arg);
m_IsComputed = false;
this->Modified();
}
......
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