comparison dwtx/jface/internal/text/link/contentassist/AdditionalInfoController2.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
95 * Creates a new additional information controller. 95 * Creates a new additional information controller.
96 * 96 *
97 * @param creator the information control creator to be used by this controller 97 * @param creator the information control creator to be used by this controller
98 * @param delay time in milliseconds after which additional info should be displayed 98 * @param delay time in milliseconds after which additional info should be displayed
99 */ 99 */
100 AdditionalInfoController2(IInformationControlCreator creator, int delay) { 100 this(IInformationControlCreator creator, int delay) {
101 super(creator); 101 super(creator);
102 fDelay= delay; 102 fDelay= delay;
103 setAnchor(ANCHOR_RIGHT); 103 setAnchor(ANCHOR_RIGHT);
104 setFallbackAnchors([ANCHOR_RIGHT, ANCHOR_LEFT, ANCHOR_BOTTOM ]); 104 setFallbackAnchors([ANCHOR_RIGHT, ANCHOR_LEFT, ANCHOR_BOTTOM ]);
105 } 105 }