summaryrefslogtreecommitdiff
path: root/src/Window.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2006-04-02 21:37:44 (GMT)
committerfluxgen <fluxgen>2006-04-02 21:37:44 (GMT)
commit894a7148be8ac88f7f1e98917f33088ab301bf60 (patch)
treeb9c3bd9fa04a64babc749a319a5610caabea9479 /src/Window.cc
parent0ca3754d683b862762695d1be891c98410f439ac (diff)
downloadfluxbox_lack-894a7148be8ac88f7f1e98917f33088ab301bf60.zip
fluxbox_lack-894a7148be8ac88f7f1e98917f33088ab301bf60.tar.bz2
size_t fixes, thanks Semushin Slava aka php-coder
Diffstat (limited to 'src/Window.cc')
-rw-r--r--src/Window.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Window.cc b/src/Window.cc
index a275e43..0fd9d8c 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -3947,7 +3947,7 @@ void FluxboxWindow::setupWindow() {
3947 3947
3948 3948
3949 3949
3950 for (char c = 0; c < 2 ; c++) { 3950 for (size_t c = 0; c < 2 ; c++) {
3951 // get titlebar configuration for current side 3951 // get titlebar configuration for current side
3952 const std::vector<WinButton::Type> &dir = *(*titlebar_side[c]); 3952 const std::vector<WinButton::Type> &dir = *(*titlebar_side[c]);
3953 3953