comparison dwt/accessibility/Accessible.d @ 313:fcbee1f66cc3

Fix 2 typos
author Frank Benoit <benoit@tionex.de>
date Fri, 19 Sep 2008 22:43:25 +0200
parents ebe343095cf1
children
comparison
equal deleted inserted replaced
312:ebe343095cf1 313:fcbee1f66cc3
289 * @see #addAccessibleListener 289 * @see #addAccessibleListener
290 */ 290 */
291 public void removeAccessibleListener(AccessibleListener listener) { 291 public void removeAccessibleListener(AccessibleListener listener) {
292 checkWidget(); 292 checkWidget();
293 if (listener is null) DWT.error(__FILE__, __LINE__, DWT.ERROR_NULL_ARGUMENT); 293 if (listener is null) DWT.error(__FILE__, __LINE__, DWT.ERROR_NULL_ARGUMENT);
294 AccessibleListener.length = accessibleListeners.remove(listener); 294 accessibleListeners.length = accessibleListeners.remove(listener);
295 } 295 }
296 296
297 /** 297 /**
298 * Removes the listener from the collection of listeners who will 298 * Removes the listener from the collection of listeners who will
299 * be notified when an accessible client asks for custom control 299 * be notified when an accessible client asks for custom control
314 * @see #addAccessibleControlListener 314 * @see #addAccessibleControlListener
315 */ 315 */
316 public void removeAccessibleControlListener(AccessibleControlListener listener) { 316 public void removeAccessibleControlListener(AccessibleControlListener listener) {
317 checkWidget(); 317 checkWidget();
318 if (listener is null) DWT.error(__FILE__, __LINE__, DWT.ERROR_NULL_ARGUMENT); 318 if (listener is null) DWT.error(__FILE__, __LINE__, DWT.ERROR_NULL_ARGUMENT);
319 AccessibleControlListener.length = accessibleControlListeners.remove(listener); 319 accessibleControlListeners.length = accessibleControlListeners.remove(listener);
320 } 320 }
321 321
322 /** 322 /**
323 * Removes the listener from the collection of listeners who will 323 * Removes the listener from the collection of listeners who will
324 * be notified when an accessible client asks for custom text control 324 * be notified when an accessible client asks for custom text control