diff options
author | fluxgen <fluxgen> | 2006-04-02 21:37:44 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2006-04-02 21:37:44 (GMT) |
commit | 894a7148be8ac88f7f1e98917f33088ab301bf60 (patch) | |
tree | b9c3bd9fa04a64babc749a319a5610caabea9479 /src/Screen.hh | |
parent | 0ca3754d683b862762695d1be891c98410f439ac (diff) | |
download | fluxbox_pavel-894a7148be8ac88f7f1e98917f33088ab301bf60.zip fluxbox_pavel-894a7148be8ac88f7f1e98917f33088ab301bf60.tar.bz2 |
size_t fixes, thanks Semushin Slava aka php-coder
Diffstat (limited to 'src/Screen.hh')
-rw-r--r-- | src/Screen.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Screen.hh b/src/Screen.hh index 2d20efd..13f2fb9 100644 --- a/src/Screen.hh +++ b/src/Screen.hh | |||
@@ -175,7 +175,7 @@ public: | |||
175 | inline int screenNumber() const { return rootWindow().screenNumber(); } | 175 | inline int screenNumber() const { return rootWindow().screenNumber(); } |
176 | 176 | ||
177 | /// @return number of workspaces | 177 | /// @return number of workspaces |
178 | unsigned int 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 | inline const Icons &iconList() const { return m_icon_list; } |
181 | inline Icons &iconList() { return m_icon_list; } | 181 | inline Icons &iconList() { return m_icon_list; } |