comparison dwtx/jface/text/PropagatingFontFieldEditor.d @ 133:7d818bd32d63

Fix ctors to this with gvim regexp
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 01:29:22 +0200
parents c4fb132a086c
children 51e6e63f930e
comparison
equal deleted inserted replaced
132:77bd3bb3d7b8 133:7d818bd32d63
197 * @param name the editor's name 197 * @param name the editor's name
198 * @param labelText the text shown as editor description 198 * @param labelText the text shown as editor description
199 * @param parent the editor's parent widget 199 * @param parent the editor's parent widget
200 * @param defaultFontLabel the label shown in the editor value field when the default value should be taken 200 * @param defaultFontLabel the label shown in the editor value field when the default value should be taken
201 */ 201 */
202 public PropagatingFontFieldEditor(String name, String labelText, Composite parent, String defaultFontLabel) { 202 public this(String name, String labelText, Composite parent, String defaultFontLabel) {
203 super(name, labelText, parent); 203 super(name, labelText, parent);
204 fParent= parent; 204 fParent= parent;
205 fDefaultFontLabel= defaultFontLabel is null ? "" : defaultFontLabel; //$NON-NLS-1$ 205 fDefaultFontLabel= defaultFontLabel is null ? "" : defaultFontLabel; //$NON-NLS-1$
206 } 206 }
207 207