diff options
author | fluxgen <fluxgen> | 2002-05-08 14:25:40 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2002-05-08 14:25:40 (GMT) |
commit | 87762aee8a87c8ebb379f3234c2516c7972aec1b (patch) | |
tree | 20838d12825f00cae6c828b9ce22b67901e40fe9 | |
parent | 712d0513b791dcab738b758ebf893a1a460edb6b (diff) | |
download | fluxbox-87762aee8a87c8ebb379f3234c2516c7972aec1b.zip fluxbox-87762aee8a87c8ebb379f3234c2516c7972aec1b.tar.bz2 |
Bool to bool
-rw-r--r-- | src/Screen.hh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Screen.hh b/src/Screen.hh index 12529e3..55d8c8b 100644 --- a/src/Screen.hh +++ b/src/Screen.hh | |||
@@ -16,13 +16,13 @@ | |||
16 | // | 16 | // |
17 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 17 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
18 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 18 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
19 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | 19 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
20 | // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 20 | // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
21 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | 21 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
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: Screen.hh,v 1.32 2002/05/08 10:10:19 fluxgen Exp $ | 25 | // $Id: Screen.hh,v 1.33 2002/05/08 14:25:40 fluxgen Exp $ |
26 | 26 | ||
27 | #ifndef SCREEN_HH | 27 | #ifndef SCREEN_HH |
28 | #define SCREEN_HH | 28 | #define SCREEN_HH |
@@ -102,8 +102,8 @@ public: | |||
102 | inline const int getSlitDirection(void) const { return resource.slit_direction; } | 102 | inline const int getSlitDirection(void) const { return resource.slit_direction; } |
103 | inline void saveSlitPlacement(int p) { resource.slit_placement = p; } | 103 | inline void saveSlitPlacement(int p) { resource.slit_placement = p; } |
104 | inline void saveSlitDirection(int d) { resource.slit_direction = d; } | 104 | inline void saveSlitDirection(int d) { resource.slit_direction = d; } |
105 | inline void saveSlitOnTop(Bool t) { resource.slit_on_top = t; } | 105 | inline void saveSlitOnTop(bool t) { resource.slit_on_top = t; } |
106 | inline void saveSlitAutoHide(Bool t) { resource.slit_auto_hide = t; } | 106 | inline void saveSlitAutoHide(bool t) { resource.slit_auto_hide = t; } |
107 | #ifdef XINERAMA | 107 | #ifdef XINERAMA |
108 | inline const unsigned int getSlitOnHead(void) const { return resource.slit_on_head; } | 108 | inline const unsigned int getSlitOnHead(void) const { return resource.slit_on_head; } |
109 | inline void saveSlitOnHead(unsigned int h) { resource.slit_on_head = h; } | 109 | inline void saveSlitOnHead(unsigned int h) { resource.slit_on_head = h; } |