Cleanup: Added const to RenderLayersProg methods

This commit is contained in:
Jeroen Bakker 2021-01-11 11:46:00 +01:00
parent 445ebcaa30
commit 6e7716f32e
1 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ class RenderLayersProg : public NodeOperation {
{
this->m_scene = scene;
}
Scene *getScene()
Scene *getScene() const
{
return this->m_scene;
}
@ -106,7 +106,7 @@ class RenderLayersProg : public NodeOperation {
{
this->m_layerId = layerId;
}
short getLayerId()
short getLayerId() const
{
return this->m_layerId;
}