diff options
Diffstat (limited to 'src/Window.hh')
-rw-r--r-- | src/Window.hh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Window.hh b/src/Window.hh index f6cb3d0..0c80669 100644 --- a/src/Window.hh +++ b/src/Window.hh | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Window.hh,v 1.109 2004/02/20 09:07:27 fluxgen Exp $ | 25 | // $Id: Window.hh,v 1.110 2004/03/21 09:00:25 rathnor Exp $ |
26 | 26 | ||
27 | #ifndef WINDOW_HH | 27 | #ifndef WINDOW_HH |
28 | #define WINDOW_HH | 28 | #define WINDOW_HH |
@@ -281,6 +281,7 @@ public: | |||
281 | inline bool isResizing() const { return resizing; } | 281 | inline bool isResizing() const { return resizing; } |
282 | bool isGroupable() const; | 282 | bool isGroupable() const; |
283 | inline int numClients() const { return m_clientlist.size(); } | 283 | inline int numClients() const { return m_clientlist.size(); } |
284 | inline bool empty() const { return m_clientlist.empty(); } | ||
284 | inline ClientList &clientList() { return m_clientlist; } | 285 | inline ClientList &clientList() { return m_clientlist; } |
285 | inline const ClientList &clientList() const { return m_clientlist; } | 286 | inline const ClientList &clientList() const { return m_clientlist; } |
286 | inline WinClient &winClient() { return *m_client; } | 287 | inline WinClient &winClient() { return *m_client; } |
@@ -370,6 +371,7 @@ public: | |||
370 | }; | 371 | }; |
371 | 372 | ||
372 | bool oplock; ///< Used to help stop transient loops occurring by locking a window during certain operations | 373 | bool oplock; ///< Used to help stop transient loops occurring by locking a window during certain operations |
374 | |||
373 | private: | 375 | private: |
374 | static const int PropBlackboxAttributesElements = 8; | 376 | static const int PropBlackboxAttributesElements = 8; |
375 | 377 | ||