def performUndoOperation(self):
     """ Undo the insert newline """
     operation = MergeLinesOperation(self.cursor, self.textStore)
     operation.perform()
 def performDoOperation(self):
     """ Perform the action """
     operation = MergeLinesOperation(self.cursor, self.textStore)
     operation.perform()