From: Dana Jansens Date: Fri, 19 Jul 2002 22:35:46 +0000 (+0000) Subject: make both for's work teh same way X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=1ed841ef2a92dbe7d2b6f279967d42f6fc044580;p=chaz%2Fopenbox make both for's work teh same way --- diff --git a/util/epist/epist.cc b/util/epist/epist.cc index 25f7e62a..a9d01792 100644 --- a/util/epist/epist.cc +++ b/util/epist/epist.cc @@ -102,10 +102,9 @@ void epist::activateGrabs() { ScreenList::const_iterator scrit, scrend = _screens.end(); for (scrit = _screens.begin(); scrit != scrend; ++scrit) { - ActionList::const_iterator end = _actions.end(); + ActionList::const_iterator ait, end = _actions.end(); - for(ActionList::const_iterator ait = _actions.begin(); - ait != end; ++ait) { + for(ait = _actions.begin(); ait != end; ++ait) { XGrabKey(getXDisplay(), ait->keycode(), ait->modifierMask(), (*scrit)->rootWindow(), True, GrabModeAsync, GrabModeAsync); }