editModeIsRequested method

bool editModeIsRequested(
  1. int row,
  2. int col
)

Implementation

bool editModeIsRequested(int row, int col) {
  return editModeIsRequestedForRow == row && editModeIsRequestedForCol == col;
}