all repos — fluxbox @ 7d8560db64fa20de924d95ec9b0dd4e9aa3485b5

custom fork of the fluxbox windowmanager

fixed for-loop
fluxgen fluxgen
commit

7d8560db64fa20de924d95ec9b0dd4e9aa3485b5

parent

c25795a91051c3dbaee4e5d2d891f1a9c5ea2060

1 files changed, 5 insertions(+), 5 deletions(-)

jump to
M src/fluxbox.ccsrc/fluxbox.cc

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: fluxbox.cc,v 1.49 2002/04/09 23:14:25 fluxgen Exp $ +// $Id: fluxbox.cc,v 1.50 2002/04/12 13:02:56 fluxgen Exp $ //Use some GNU extensions #ifndef _GNU_SOURCE

@@ -1485,7 +1485,7 @@ #endif

//get new states int flag = ce.data.l[0] & ce.data.l[1]; - //set states + //set states win->setGnomeState(flag); } else if (ce.message_type == getGnomeHintsAtom()) {

@@ -2344,9 +2344,9 @@ }

} menuTimestamps.erase(menuTimestamps.begin(), menuTimestamps.end()); - std::list<BScreen *>::iterator sit = screenList.begin(); - std::list<BScreen *>::iterator sit_end = screenList.end(); - for (; sit != sit_end; ++it) { + ScreenList::iterator sit = screenList.begin(); + ScreenList::iterator sit_end = screenList.end(); + for (; sit != sit_end; ++sit) { (*sit)->rereadMenu(); } }