summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-08 17:10:35 +0000
committerDana Jansens <danakj@orodu.net>2003-01-08 17:10:35 +0000
commit9dd52dfcc3cebd39580db8e0b72e294c67a847d9 (patch)
treec6af7fdb2c1a84b7b003d9462523539cf1acd860 /src
parentae0b364fce6e3fd5e621b4c28e81a1dc1e415fc6 (diff)
make close() and shade() private.
Diffstat (limited to 'src')
-rw-r--r--src/client.hh20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/client.hh b/src/client.hh
index fd6e8f82..25b4be04 100644
--- a/src/client.hh
+++ b/src/client.hh
@@ -364,6 +364,16 @@ private:
//! Change the client's state hints to match the class' data
void changeState();
+
+ //! Request the client to close its window.
+ void close();
+
+ //! Shades or unshades the client window
+ /*!
+ @param shade true if the window should be shaded; false if it should be
+ unshaded.
+ */
+ void shade(bool shade);
public:
#ifndef SWIG
@@ -502,16 +512,6 @@ BB @param window The window id that the OBClient class should handle
*/
void resize(Corner anchor, int w, int h, int x = INT_MIN, int y = INT_MIN);
- //! Request the client to close its window.
- void close();
-
- //! Shades or unshades the client window
- /*!
- @param shade true if the window should be shaded; false if it should be
- unshaded.
- */
- void shade(bool shade);
-
//! Attempt to focus the client window
bool focus() const;