diff options
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; } |