aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/MultLayers.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbTk/MultLayers.hh')
-rw-r--r--src/FbTk/MultLayers.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/FbTk/MultLayers.hh b/src/FbTk/MultLayers.hh
index b42e347..d75920e 100644
--- a/src/FbTk/MultLayers.hh
+++ b/src/FbTk/MultLayers.hh
@@ -59,9 +59,9 @@ public:
59 XLayer *getLayer(size_t num); 59 XLayer *getLayer(size_t num);
60 const XLayer *getLayer(size_t num) const; 60 const XLayer *getLayer(size_t num) const;
61 61
62 inline bool isUpdatable() const { return m_lock == 0; } 62 bool isUpdatable() const { return m_lock == 0; }
63 inline void lock() { ++m_lock; } 63 void lock() { ++m_lock; }
64 inline void unlock() { if (--m_lock == 0) restack(); } 64 void unlock() { if (--m_lock == 0) restack(); }
65 65
66private: 66private:
67 std::vector<XLayer *> m_layers; 67 std::vector<XLayer *> m_layers;