~azzar1/compiz/is_repeated_key_press

« back to all changes in this revision

Viewing changes to plugins/resize/src/logic/src/resize-logic.cpp

  • Committer: CI Train Bot
  • Author(s): smspillaz at gmail
  • Date: 2016-03-11 08:26:37 UTC
  • mfrom: (3995.4.5 compiz)
  • Revision ID: ci-train-bot@canonical.com-20160311082637-rd2rmr6o3arbc8sz
Fix broken tests
Approved by: Marco Trevisan (Treviño), PS Jenkins bot

Show diffs side-by-side

added added

removed removed

Lines of Context:
439
439
                    lastMaskY = mask;
440
440
                }
441
441
 
442
 
                mScreen->updateGrab (grabIndex, screen->cursorCache (keyCursorNames[i]));
 
442
                mScreen->updateGrab (grabIndex, mScreen->cursorCache (keyCursorNames[i]));
443
443
            }
444
444
            break;
445
445
        }
692
692
        cursor_name = DOWN_CURSOR;
693
693
    }
694
694
 
695
 
    return screen->cursorCache (cursor_name);
 
695
    return mScreen->cursorCache (cursor_name);
696
696
}
697
697
 
698
698
void
1338
1338
            Cursor cursor;
1339
1339
 
1340
1340
            if (state & CompAction::StateInitKey)
1341
 
                cursor = screen->cursorCache (MIDDLE_CURSOR);
 
1341
                cursor = mScreen->cursorCache (MIDDLE_CURSOR);
1342
1342
            else
1343
1343
                cursor = cursorFromResizeMask (mask);
1344
1344