diff options
author | fluxgen <fluxgen> | 2007-10-24 19:38:27 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2007-10-24 19:38:27 (GMT) |
commit | a092d3fc1b351a4c6ea1d95757b5244bf86b8a39 (patch) | |
tree | c6680f8a1e5cc4eec176d8d608bbd08dc95910ec /src/MinOverlapPlacement.cc | |
parent | e7513df45fce2bfbbac8b764e07627dfe36e6ba5 (diff) | |
download | fluxbox-a092d3fc1b351a4c6ea1d95757b5244bf86b8a39.zip fluxbox-a092d3fc1b351a4c6ea1d95757b5244bf86b8a39.tar.bz2 |
fixed gcc 2.96 compile problem
Diffstat (limited to 'src/MinOverlapPlacement.cc')
-rw-r--r-- | src/MinOverlapPlacement.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MinOverlapPlacement.cc b/src/MinOverlapPlacement.cc index 510f66e..ce7ff3c 100644 --- a/src/MinOverlapPlacement.cc +++ b/src/MinOverlapPlacement.cc | |||
@@ -155,7 +155,7 @@ bool MinOverlapPlacement::placeWindow(const FluxboxWindow &win, int head, | |||
155 | 155 | ||
156 | int overlap = 0; | 156 | int overlap = 0; |
157 | it = windowlist.rbegin(); | 157 | it = windowlist.rbegin(); |
158 | for (; it != windowlist.rend(); ++it) { | 158 | for (; it != it_end; ++it) { |
159 | 159 | ||
160 | // get the dimensions of the window | 160 | // get the dimensions of the window |
161 | int left = (*it)->x() - (*it)->xOffset(); | 161 | int left = (*it)->x() - (*it)->xOffset(); |