aboutsummaryrefslogtreecommitdiff
path: root/src/Window.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-05-11 13:36:12 (GMT)
committerfluxgen <fluxgen>2003-05-11 13:36:12 (GMT)
commitaa72e23c8e1f6decf0bb78f8bd909e3e67b3a9da (patch)
tree9e8f1c81637c6e000127ed32f794e166eb4ac6a3 /src/Window.hh
parent816190411a9e5bd6cdfaa9d579f84be348a2f1bc (diff)
downloadfluxbox-aa72e23c8e1f6decf0bb78f8bd909e3e67b3a9da.zip
fluxbox-aa72e23c8e1f6decf0bb78f8bd909e3e67b3a9da.tar.bz2
minor cleaning
Diffstat (limited to 'src/Window.hh')
-rw-r--r--src/Window.hh10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/Window.hh b/src/Window.hh
index 1bae6e2..e6d8633 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.70 2003/05/10 23:03:49 fluxgen Exp $ 25// $Id: Window.hh,v 1.71 2003/05/11 13:36:11 fluxgen Exp $
26 26
27#ifndef WINDOW_HH 27#ifndef WINDOW_HH
28#define WINDOW_HH 28#define WINDOW_HH
@@ -282,9 +282,6 @@ public:
282 inline const ClientList &clientList() const { return m_clientlist; } 282 inline const ClientList &clientList() const { return m_clientlist; }
283 inline WinClient &winClient() { return *m_client; } 283 inline WinClient &winClient() { return *m_client; }
284 inline const WinClient &winClient() const { return *m_client; } 284 inline const WinClient &winClient() const { return *m_client; }
285 // obsolete
286 inline const BScreen &getScreen() const { return m_screen; }
287 inline BScreen &getScreen() { return m_screen; }
288 285
289 inline const BScreen &screen() const { return m_screen; } 286 inline const BScreen &screen() const { return m_screen; }
290 inline BScreen &screen() { return m_screen; } 287 inline BScreen &screen() { return m_screen; }
@@ -316,8 +313,9 @@ public:
316 int getWindowNumber() const { return m_window_number; } 313 int getWindowNumber() const { return m_window_number; }
317 int getLayerNum() const { return m_layernum; } 314 int getLayerNum() const { return m_layernum; }
318 void setLayerNum(int layernum); 315 void setLayerNum(int layernum);
319 unsigned int getWidth() const { return m_frame.width(); } 316
320 unsigned int getHeight() const { return m_frame.height(); } 317 unsigned int width() const { return m_frame.width(); }
318 unsigned int height() const { return m_frame.height(); }
321 unsigned int getClientHeight() const; 319 unsigned int getClientHeight() const;
322 unsigned int getClientWidth() const; 320 unsigned int getClientWidth() const;
323 unsigned int getTitleHeight() const { return m_frame.titleHeight(); } 321 unsigned int getTitleHeight() const { return m_frame.titleHeight(); }