Added public DoInlineEditing() (rev sdagley, appr don)

This commit is contained in:
pinkerton 1998-04-08 20:30:13 +00:00
Родитель a73da497bc
Коммит 5393bba715
1 изменённых файлов: 17 добавлений и 0 удалений

Просмотреть файл

@ -798,6 +798,23 @@ void CStandardFlexTable::ClickSelf(const SMouseDownEvent &inMouseDown)
} // CStandardFlexTable::ClickSelf
//
// DoInlineEditing
//
// Perform the necessary setup for inline editing of a row's main text and then show the edit field.
// This version of the routine is public and does not require any external knowledge of table internals
// besides the cell that we should edit. Most of the work is done by calling the routine below
//
void
CStandardFlexTable::DoInlineEditing ( const STableCell &inCell )
{
Rect textRect;
GetHiliteTextRect ( inCell.row, textRect );
DoInlineEditing ( inCell, textRect );
} // DoInlineEditing
//
// DoInlineEditing
//