diff options
author | fluxgen <fluxgen> | 2002-04-03 12:08:54 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2002-04-03 12:08:54 (GMT) |
commit | 05761f6059fb1dc12f6922b06c297b5f10780a05 (patch) | |
tree | 66f0ffb5067833b5f4c641c8e58da6ecb6035621 /src/Clientmenu.cc | |
parent | 968f9b5d8e0397bd812ce41073a317eb20fdf9df (diff) | |
download | fluxbox-05761f6059fb1dc12f6922b06c297b5f10780a05.zip fluxbox-05761f6059fb1dc12f6922b06c297b5f10780a05.tar.bz2 |
Fixed some signed/unsigned warnings
Diffstat (limited to 'src/Clientmenu.cc')
-rw-r--r-- | src/Clientmenu.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Clientmenu.cc b/src/Clientmenu.cc index e873124..68b6173 100644 --- a/src/Clientmenu.cc +++ b/src/Clientmenu.cc | |||
@@ -45,7 +45,7 @@ Clientmenu::Clientmenu(Workspace *ws) : Basemenu(ws->getScreen()) { | |||
45 | } | 45 | } |
46 | 46 | ||
47 | 47 | ||
48 | void Clientmenu::itemSelected(int button, int index) { | 48 | void Clientmenu::itemSelected(int button, unsigned int index) { |
49 | if (button > 2) return; | 49 | if (button > 2) return; |
50 | 50 | ||
51 | FluxboxWindow *win = wkspc->getWindow(index); | 51 | FluxboxWindow *win = wkspc->getWindow(index); |