]> git.saurik.com Git - wxWidgets.git/commitdiff
Added setters for table row and column count
authorJulian Smart <julian@anthemion.co.uk>
Fri, 20 Sep 2013 11:34:11 +0000 (11:34 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Fri, 20 Sep 2013 11:34:11 +0000 (11:34 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74847 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/richtext/richtextbuffer.h

index a763461545db37e8ff0f49f02900cc1dba2411c7..4c80c1e4978fd5e66f9e96d336e03650fc4f9f9f 100644 (file)
@@ -5689,11 +5689,21 @@ public:
     */
     int GetRowCount() const { return m_rowCount; }
 
     */
     int GetRowCount() const { return m_rowCount; }
 
+    /**
+        Sets the row count.
+    */
+    void SetRowCount(int count) { m_rowCount = count; }
+
     /**
         Returns the column count.
     */
     int GetColumnCount() const { return m_colCount; }
 
     /**
         Returns the column count.
     */
     int GetColumnCount() const { return m_colCount; }
 
+    /**
+        Sets the column count.
+    */
+    void SetColumnCount(int count) { m_colCount = count; }
+
     /**
         Returns the cell at the given row/column position.
     */
     /**
         Returns the cell at the given row/column position.
     */