Skip to content

Commit

Permalink
Print messages removed as initial logging capability has been added
Browse files Browse the repository at this point in the history
  • Loading branch information
raquelalegre committed Apr 17, 2015
1 parent b1e8558 commit 8ce7ee8
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions python/nammu/view/ToolbarView.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,35 +95,27 @@ def __init__(self, controller):
self.add(quitButton)

def onNewFileClick(self, event):
print "Prompt save current, clear text area"
self.controller.newFile()

def onOpenFileClick(self, event):
print "Browse for new file to open and load it in text area."
self.controller.openFile()

def onSaveFileClick(self, event):
print "Browse for place to save current file."
self.controller.saveFile()

def onCloseFileClick(self, event):
print "Prompt save current, clear text area."
self.controller.closeFile()

def onUndoClick(self, event):
print "Undo last action."
self.controller.undo()

def onRedoClick(self, event):
print "Redo last undone action."
self.controller.redo()

def onValidateClick(self, event):
print "Validate current ATF, display errors in console panel."
self.controller.validate("text area content or path to file?")

def onLemmatiseClick(self, event):
print "Lemmatise current ATF, display errors in console panel."
def onLemmatiseClick(self, event):
self.controller.lemmatise("text area content or path to file?")

def onUnicodeClick(self, event):
Expand All @@ -139,11 +131,9 @@ def onConsoleClick(self, event):
#self.controller.displayConsole()

def onModelClick(self, event):
print "Change atfAreaView to model mode."
self.controller.displayModelView()

def onQuitClick(self, event):
print "Prompt save current, exit Nammu."
self.controller.quit()


0 comments on commit 8ce7ee8

Please sign in to comment.