aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-04-03 12:08:54 (GMT)
committerfluxgen <fluxgen>2002-04-03 12:08:54 (GMT)
commit05761f6059fb1dc12f6922b06c297b5f10780a05 (patch)
tree66f0ffb5067833b5f4c641c8e58da6ecb6035621 /src/Screen.hh
parent968f9b5d8e0397bd812ce41073a317eb20fdf9df (diff)
downloadfluxbox-05761f6059fb1dc12f6922b06c297b5f10780a05.zip
fluxbox-05761f6059fb1dc12f6922b06c297b5f10780a05.tar.bz2
Fixed some signed/unsigned warnings
Diffstat (limited to 'src/Screen.hh')
-rw-r--r--src/Screen.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Screen.hh b/src/Screen.hh
index 4109682..c34809d 100644
--- a/src/Screen.hh
+++ b/src/Screen.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: Screen.hh,v 1.26 2002/04/02 23:14:54 fluxgen Exp $ 25// $Id: Screen.hh,v 1.27 2002/04/03 12:08:54 fluxgen Exp $
26 26
27#ifndef SCREEN_HH 27#ifndef SCREEN_HH
28#define SCREEN_HH 28#define SCREEN_HH
@@ -124,8 +124,8 @@ public:
124 inline const unsigned int getCurrentWorkspaceID() const { return current_workspace->getWorkspaceID(); } 124 inline const unsigned int getCurrentWorkspaceID() const { return current_workspace->getWorkspaceID(); }
125 125
126 typedef std::vector<FluxboxWindow *> Icons; 126 typedef std::vector<FluxboxWindow *> Icons;
127 inline const unsigned int getCount(void) { return workspacesList.size(); } 127 inline const unsigned int getCount(void) const { return workspacesList.size(); }
128 inline const int getIconCount(void) { return iconList.size(); } 128 inline const unsigned int getIconCount(void) const { return iconList.size(); }
129 inline Icons &getIconList(void) { return iconList; } 129 inline Icons &getIconList(void) { return iconList; }
130 130
131 inline const int getNumberOfWorkspaces(void) { return *resource.workspaces; } 131 inline const int getNumberOfWorkspaces(void) { return *resource.workspaces; }