--- jsampler/trunk/src/org/jsampler/HF.java 2007/05/24 21:19:36 1203 +++ jsampler/trunk/src/org/jsampler/HF.java 2007/05/24 21:43:45 1204 @@ -158,7 +158,7 @@ String msg = getErrorMessage(e); CC.getLogger().log(Level.INFO, msg, e); - + JOptionPane.showMessageDialog ( dlg, msg, i18n.getError("error"), @@ -170,6 +170,7 @@ * Brings up a question dialog with Yes, No options, empty title and the specified message. * @param parent The parent Component for the dialog. * @param message The message to display. + * @return true if the user chooses "yes", false otherwise. */ public static boolean showYesNoDialog(Component parent, String message) { @@ -181,6 +182,7 @@ * @param parent The parent Component for the dialog. * @param message The message to display. * @param title The dialog's title. + * @return true if the user chooses "yes", false otherwise. */ public static boolean showYesNoDialog(Component parent, String message, String title) {