def performDoOperation(self):
     """ Perform the action """
     operation = InsertNewlineOperation(self.cursor, self.textStore)
     operation.perform()
 def performUndoOperation(self):
     """ Undo the merge lines action """
     operation = InsertNewlineOperation(self.cursor, self.textStore)
     operation.perform()