make both for's work teh same way
This commit is contained in:
parent
8cfa247c3f
commit
1ed841ef2a
1 changed files with 2 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue