From b1e85589a3ad6b25614b020b5c0d3cd3427c2faf Mon Sep 17 00:00:00 2001 From: raquel-ucl Date: Fri, 17 Apr 2015 17:27:41 +0100 Subject: [PATCH] Print messages removed as initial logging capability has been added --- python/nammu/view/MenuView.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/python/nammu/view/MenuView.py b/python/nammu/view/MenuView.py index 6678b219..f1820d48 100644 --- a/python/nammu/view/MenuView.py +++ b/python/nammu/view/MenuView.py @@ -182,53 +182,41 @@ def __init__(self, controller): #Suboptions: Help | About def onNewFileSelect(self, event): - print "Prompt save current, close it and clean text area." self.controller.newFile() def onOpenFileSelect(self, event): - print "Browse for new file to open and load it in text area." self.controller.openFile() # def onSaveFileSelect(self, event): - print "Browse for place to save current file." self.controller.saveFile() #Delegate all events to view controller def onCloseFileSelect(self, event): - print "Prompt save current, close it and clean text area." self.controller.closeFile() def onQuitFileSelect(self, event): - print "Prompt save current, exit Nammu." self.controller.quit() def onUndoSelect(self, event): - print "Undo last change." self.controller.undo() def onRedoSelect(self, event): - print "Redo last undone action." self.controller.redo() def onCopySelect(self, event): - print "Copy selected text." self.controller.copy() def onCutSelect(self, event): - print "Cut selected text." self.controller.cut() def onPasteSelect(self, event): - print "Paste clipboard text." self.controller.paste() def onValidateSelect(self, event): - print "Validate ATF." self.controller.validate("text area content or path to file?") def onLemmatiseSelect(self, event): - print "Lemmatise ATF." self.controller.lemmatise("text area content or path to file?") def onHelpSelect(self, event): @@ -240,7 +228,6 @@ def onAboutSelect(self, event): self.controller.showAbout() def onModelSelect(self, event): - print "Change to model view." self.controller.displayModelView() def onConsoleSelect(self, event):