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

git-svn-id: svn://10.0.0.236/trunk@108 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
pinkerton
1998-04-08 20:30:13 +00:00
parent 213e41d92d
commit 644f0dd2e1

View File

@@ -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
//