comparison dwtx/jface/wizard/WizardDialog.d @ 118:a521c486e142

Fix: member variable initialized in wrong place
author Frank Benoit <benoit@tionex.de>
date Fri, 08 Aug 2008 19:28:08 +0200
parents 04b47443bb01
children c36336245fb1
comparison
equal deleted inserted replaced
117:bade933d6ef6 118:a521c486e142
190 * the minimum width 190 * the minimum width
191 * @param minH 191 * @param minH
192 * the minimum height 192 * the minimum height
193 */ 193 */
194 public this(int mw, int mh, int minW, int minH) { 194 public this(int mw, int mh, int minW, int minH) {
195 pageContainerLayout = new PageContainerFillLayout( 5, 5, 300, 225);
196 marginWidth = mw; 195 marginWidth = mw;
197 marginHeight = mh; 196 marginHeight = mh;
198 minimumWidth = minW; 197 minimumWidth = minW;
199 minimumHeight = minH; 198 minimumHeight = minH;
200 } 199 }
290 * the parent shell 289 * the parent shell
291 * @param newWizard 290 * @param newWizard
292 * the wizard this dialog is working on 291 * the wizard this dialog is working on
293 */ 292 */
294 public this(Shell parentShell, IWizard newWizard) { 293 public this(Shell parentShell, IWizard newWizard) {
294 pageContainerLayout = new PageContainerFillLayout( 5, 5, 300, 225);
295 createdWizards = new ArrayList(); 295 createdWizards = new ArrayList();
296 nestedWizards = new ArrayList(); 296 nestedWizards = new ArrayList();
297 pageChangedListeners = new ListenerList(); 297 pageChangedListeners = new ListenerList();
298 pageChangingListeners = new ListenerList(); 298 pageChangingListeners = new ListenerList();
299 299