aboutsummaryrefslogtreecommitdiff
path: root/src/Clientmenu.cc
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/Clientmenu.cc
parent968f9b5d8e0397bd812ce41073a317eb20fdf9df (diff)
downloadfluxbox_pavel-05761f6059fb1dc12f6922b06c297b5f10780a05.zip
fluxbox_pavel-05761f6059fb1dc12f6922b06c297b5f10780a05.tar.bz2
Fixed some signed/unsigned warnings
Diffstat (limited to 'src/Clientmenu.cc')
-rw-r--r--src/Clientmenu.cc2
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
48void Clientmenu::itemSelected(int button, int index) { 48void 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);