Applied colspan corrections, #15274 and #15275 (dghart)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74292 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2013-06-25 15:30:55 +00:00
parent a4f6fe43c3
commit 8a28cd66a6
2 changed files with 48 additions and 31 deletions

View File

@@ -5562,6 +5562,14 @@ public:
// Accessors
int GetColspan() const;
void SetColspan(long span) { GetProperties().SetProperty(wxT("colspan"), span); }
int GetRowspan() const;
void SetRowspan(long span) { GetProperties().SetProperty(wxT("rowspan"), span); }
// Operations
virtual wxRichTextObject* Clone() const { return new wxRichTextCell(*this); }