comparison dwtx/jface/viewers/TextCellEditor.d @ 70:46a6e0e6ccd4

Merge with d-fied sources of 3.4M7
author Frank Benoit <benoit@tionex.de>
date Thu, 22 May 2008 01:36:46 +0200
parents ea8ff534f622
children 7ffeace6c47f
comparison
equal deleted inserted replaced
69:07b9d96fd764 70:46a6e0e6ccd4
477 text.selectAll(); 477 text.selectAll();
478 checkSelection(); 478 checkSelection();
479 checkDeleteable(); 479 checkDeleteable();
480 } 480 }
481 481
482 override bool dependsOnExternalFocusListener() { 482 /**
483 * This implementation of
484 * {@link CellEditor#dependsOnExternalFocusListener()} returns false if the
485 * current instance's class is TextCellEditor, and true otherwise.
486 * Subclasses that hook their own focus listener should override this method
487 * and return false. See also bug 58777.
488 *
489 * @since 3.4
490 */
491 protected override bool dependsOnExternalFocusListener() {
483 return this.classinfo !is TextCellEditor.classinfo; 492 return this.classinfo !is TextCellEditor.classinfo;
484 } 493 }
485 } 494 }