aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-05-17 11:58:47 (GMT)
committerfluxgen <fluxgen>2002-05-17 11:58:47 (GMT)
commite1f76359f50e3c3c4e9a0c5ef8e126b180f99caa (patch)
tree31a850799096b80fb49bf3c38dd3d4d93d66c8e6
parenteb8234442e9135b10bc26a11ba2d6c8b4e1db2de (diff)
downloadfluxbox_pavel-e1f76359f50e3c3c4e9a0c5ef8e126b180f99caa.zip
fluxbox_pavel-e1f76359f50e3c3c4e9a0c5ef8e126b180f99caa.tar.bz2
const
-rw-r--r--src/Basemenu.hh4
-rw-r--r--src/Workspace.hh2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/Basemenu.hh b/src/Basemenu.hh
index 616ca38..d377985 100644
--- a/src/Basemenu.hh
+++ b/src/Basemenu.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: Basemenu.hh,v 1.12 2002/04/08 22:37:49 fluxgen Exp $ 25// $Id: Basemenu.hh,v 1.13 2002/05/17 11:57:02 fluxgen Exp $
26 26
27#ifndef BASEMENU_HH 27#ifndef BASEMENU_HH
28#define BASEMENU_HH 28#define BASEMENU_HH
@@ -74,7 +74,7 @@ public:
74 inline bool isTorn() const { return torn; } 74 inline bool isTorn() const { return torn; }
75 inline bool isVisible() const { return visible; } 75 inline bool isVisible() const { return visible; }
76 inline BScreen *screen() const { return m_screen; } 76 inline BScreen *screen() const { return m_screen; }
77 inline const Window windowID() const { return menu.window; } 77 inline Window windowID() const { return menu.window; }
78 inline const std::string &label() const { return menu.label; } 78 inline const std::string &label() const { return menu.label; }
79 inline int x() const { return menu.x; } 79 inline int x() const { return menu.x; }
80 inline int y() const { return menu.y; } 80 inline int y() const { return menu.y; }
diff --git a/src/Workspace.hh b/src/Workspace.hh
index 7bf72f2..379c30b 100644
--- a/src/Workspace.hh
+++ b/src/Workspace.hh
@@ -62,7 +62,7 @@ public:
62 inline Clientmenu *menu() { return &m_clientmenu; } 62 inline Clientmenu *menu() { return &m_clientmenu; }
63 inline const Clientmenu *menu() const { return &m_clientmenu; } 63 inline const Clientmenu *menu() const { return &m_clientmenu; }
64 inline const std::string &name() const { return m_name; } 64 inline const std::string &name() const { return m_name; }
65 inline const unsigned int workspaceID() const { return m_id; } 65 inline unsigned int workspaceID() const { return m_id; }
66 66
67 FluxboxWindow *getWindow(unsigned int id); 67 FluxboxWindow *getWindow(unsigned int id);
68 const FluxboxWindow *getWindow(unsigned int id) const; 68 const FluxboxWindow *getWindow(unsigned int id) const;