diff options
author | mathias <mathias> | 2006-04-11 18:26:00 (GMT) |
---|---|---|
committer | mathias <mathias> | 2006-04-11 18:26:00 (GMT) |
commit | a6551852bb5cc860c2ba62b4b70ec269dcd9eb40 (patch) | |
tree | 08dcf3ca5fd07a1f9983abaffe10ed403f4f2199 /src/Screen.hh | |
parent | f1a6c9100b2b11ece591cf7d7f49eba7527a02f4 (diff) | |
download | fluxbox_pavel-a6551852bb5cc860c2ba62b4b70ec269dcd9eb40.zip fluxbox_pavel-a6551852bb5cc860c2ba62b4b70ec269dcd9eb40.tar.bz2 |
fixed size_t issue with prevWorkspace, minor cosmetic changes to Screen.hh
Diffstat (limited to 'src/Screen.hh')
-rw-r--r-- | src/Screen.hh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Screen.hh b/src/Screen.hh index 13f2fb9..ffac442 100644 --- a/src/Screen.hh +++ b/src/Screen.hh | |||
@@ -170,15 +170,15 @@ public: | |||
170 | /// @return true if dock app was added, else false | 170 | /// @return true if dock app was added, else false |
171 | bool addKdeDockapp(Window win); | 171 | bool addKdeDockapp(Window win); |
172 | 172 | ||
173 | inline unsigned int width() const { return rootWindow().width(); } | 173 | unsigned int width() const { return rootWindow().width(); } |
174 | inline unsigned int height() const { return rootWindow().height(); } | 174 | unsigned int height() const { return rootWindow().height(); } |
175 | inline int screenNumber() const { return rootWindow().screenNumber(); } | 175 | int screenNumber() const { return rootWindow().screenNumber(); } |
176 | 176 | ||
177 | /// @return number of workspaces | 177 | /// @return number of workspaces |
178 | size_t numberOfWorkspaces() const { return m_workspaces_list.size(); } | 178 | size_t numberOfWorkspaces() const { return m_workspaces_list.size(); } |
179 | 179 | ||
180 | inline const Icons &iconList() const { return m_icon_list; } | 180 | const Icons &iconList() const { return m_icon_list; } |
181 | inline Icons &iconList() { return m_icon_list; } | 181 | Icons &iconList() { return m_icon_list; } |
182 | 182 | ||
183 | const Workspaces &getWorkspacesList() const { return m_workspaces_list; } | 183 | const Workspaces &getWorkspacesList() const { return m_workspaces_list; } |
184 | Workspaces &getWorkspacesList() { return m_workspaces_list; } | 184 | Workspaces &getWorkspacesList() { return m_workspaces_list; } |