Make Layer::getLayerNum() const.
This commit is contained in:
parent
7e17056c35
commit
9667d538eb
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ public:
|
|||
//typedef std::list<LayerItem *>::reverse_iterator reverse_iterator;
|
||||
|
||||
void setLayerNum(int layernum) { m_layernum = layernum; };
|
||||
int getLayerNum() { return m_layernum; };
|
||||
int getLayerNum() const { return m_layernum; };
|
||||
// Put all items on the same layer (called when layer item added to)
|
||||
void alignItem(LayerItem &item);
|
||||
int countWindows();
|
||||
|
|
Loading…
Reference in a new issue