Incremental commit. Reorganizing libpit implementations. Starting XML implementation.

This commit is contained in:
Jonathan Bernard
2010-08-28 07:24:05 -05:00
parent 63d47d8d9c
commit 482330d02a
6 changed files with 46 additions and 4 deletions

View File

@ -123,7 +123,7 @@ issuePopupMenu = popupMenu() {
def newPriority = JOptionPane.showInputDialog(mainMVC.view.frame,
'New priority (0-9)', 'Change Priority...',
JOptionPane.QUESTION_MESSAGE)
try { model.popupIsse.priority = newPriority.toInteger() }
try { model.popupIssue.priority = newPriority.toInteger() }
catch (NumberFormatException nfe) {
JOptionPane.showMessageDialog(mainMVC.view.frame,
'The priority value must be an integer in [0-9].',