Skip to content
Snippets Groups Projects
Commit d254eb4c authored by Julien Michel's avatar Julien Michel
Browse files

BUG: Ensuring that the update() method is called on ossim internal projection...

BUG: Ensuring that the update() method is called on ossim internal projection everytime a parameter changes
parent 597a55dc
No related branches found
No related tags found
No related merge requests found
......@@ -149,6 +149,14 @@ protected:
std::string m_ProjectionRefWkt;
virtual void InstanciateProjection();
virtual void Modified()
{
Superclass::Modified();
// Update map projection
m_MapProjection->update();
}
private:
MapProjection(const Self &); //purposely not implemented
void operator =(const Self&); //purposely not implemented
......
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