String command = e.getActionCommand();
if ("Quit".equals( command )) {
this.windowClosing( null );
} else if ("Import GNUCash".equals( command )) {
mainFrame.setTitle(GUIConstants.APPLICATION_NAME + " - Import GNUCash");
new GNUCashController(this.contentPanel);
} else if ("Export Payees".equals( command )) {
new PayeeExportController();
} else if ("Import Payees".equals( command )) {
new PayeeImportController();
} else if ("Export XML".equals( command )) {