From 1ed841ef2a92dbe7d2b6f279967d42f6fc044580 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Fri, 19 Jul 2002 22:35:46 +0000 Subject: [PATCH] make both for's work teh same way --- util/epist/epist.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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); } -- 2.45.2