# HG changeset patch # User Frank Benoit # Date 1218918715 -7200 # Node ID 980dbedc42d4ffea5d9bdcee9c834a6bc3ee7ab1 # Parent ddeafd007ce41231485735361b4b9bc8de1ea663 Fix: formating of dialog text. diff -r ddeafd007ce4 -r 980dbedc42d4 dwtx/jface/dialogs/ErrorDialog.d --- a/dwtx/jface/dialogs/ErrorDialog.d Sat Aug 16 13:24:47 2008 +0200 +++ b/dwtx/jface/dialogs/ErrorDialog.d Sat Aug 16 22:31:55 2008 +0200 @@ -143,7 +143,7 @@ this.message = message is null ? status.getMessage() : JFaceResources .format( - "Reason", [ message, status.getMessage() ]); //$NON-NLS-1$ + "Reason", message, status.getMessage() ); //$NON-NLS-1$ this.status = status; this.displayMask = displayMask; } @@ -231,7 +231,7 @@ * and lays out a composite. Subclasses that require a different dialog area * may either override this method, or call the super * implementation and add controls to the created composite. - * + * * Note: Since 3.4, the created composite no longer grabs excess vertical space. * See https://bugs.eclipse.org/bugs/show_bug.cgi?id=72489. * If the old behavior is desired by subclasses, get the returned composite's @@ -687,7 +687,7 @@ return 2; return 3; } - + /* * (non-Javadoc) * @see dwtx.jface.dialogs.Dialog#isResizable()