comparison dwtx/jface/internal/text/html/BrowserInformationControl.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
179 * @param parent the parent shell 179 * @param parent the parent shell
180 * @param symbolicFontName the symbolic name of the font used for size computations 180 * @param symbolicFontName the symbolic name of the font used for size computations
181 * @param resizable <code>true</code> if the control should be resizable 181 * @param resizable <code>true</code> if the control should be resizable
182 * @since 3.4 182 * @since 3.4
183 */ 183 */
184 public BrowserInformationControl(Shell parent, String symbolicFontName, bool resizable) { 184 public this(Shell parent, String symbolicFontName, bool resizable) {
185 super(parent, resizable); 185 super(parent, resizable);
186 fSymbolicFontName= symbolicFontName; 186 fSymbolicFontName= symbolicFontName;
187 create(); 187 create();
188 } 188 }
189 189
194 * @param symbolicFontName the symbolic name of the font used for size computations 194 * @param symbolicFontName the symbolic name of the font used for size computations
195 * @param statusFieldText the text to be used in the optional status field 195 * @param statusFieldText the text to be used in the optional status field
196 * or <code>null</code> if the status field should be hidden 196 * or <code>null</code> if the status field should be hidden
197 * @since 3.4 197 * @since 3.4
198 */ 198 */
199 public BrowserInformationControl(Shell parent, String symbolicFontName, String statusFieldText) { 199 public this(Shell parent, String symbolicFontName, String statusFieldText) {
200 super(parent, statusFieldText); 200 super(parent, statusFieldText);
201 fSymbolicFontName= symbolicFontName; 201 fSymbolicFontName= symbolicFontName;
202 create(); 202 create();
203 } 203 }
204 204
208 * @param parent the parent shell 208 * @param parent the parent shell
209 * @param symbolicFontName the symbolic name of the font used for size computations 209 * @param symbolicFontName the symbolic name of the font used for size computations
210 * @param toolBarManager the manager or <code>null</code> if toolbar is not desired 210 * @param toolBarManager the manager or <code>null</code> if toolbar is not desired
211 * @since 3.4 211 * @since 3.4
212 */ 212 */
213 public BrowserInformationControl(Shell parent, String symbolicFontName, ToolBarManager toolBarManager) { 213 public this(Shell parent, String symbolicFontName, ToolBarManager toolBarManager) {
214 super(parent, toolBarManager); 214 super(parent, toolBarManager);
215 fSymbolicFontName= symbolicFontName; 215 fSymbolicFontName= symbolicFontName;
216 create(); 216 create();
217 } 217 }
218 218