Add missing methods

This commit is contained in:
Robin Dunn
2016-08-10 19:22:34 -07:00
parent cbbf8fe9d8
commit a5fe9de656
2 changed files with 10 additions and 0 deletions

View File

@@ -435,6 +435,13 @@ public:
Sets the cell's position within parent container.
*/
virtual void SetPos(int x, int y);
/**
Converts the cell into text representation. If sel != NULL then
only part of the cell inside the selection is converted.
*/
virtual wxString ConvertToText(wxHtmlSelection* sel) const;
};