]> git.saurik.com Git - wxWidgets.git/commitdiff
Added todos for changing wxVListBox::OnDraw* virtual functions to non-const (I'm...
authorBryan Petty <bryan@ibaku.net>
Mon, 5 May 2008 22:02:01 +0000 (22:02 +0000)
committerBryan Petty <bryan@ibaku.net>
Mon, 5 May 2008 22:02:01 +0000 (22:02 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53460 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/vlbox.h

index 206c21023f34b7356e73f4dcc8d4ff391d9cb29e..e63e92b600e3b97e745ee7cb65bf34eb310ab7ff 100644 (file)
@@ -190,6 +190,8 @@ public:
         consists in drawing the selected item with the standard background
         colour and drawing a border around the item if it is either selected or
         current.
+
+        @todo Change this function signature to non-const.
     */
     void OnDrawBackground(wxDC& dc, const wxRect& rect, size_t n) const;
 
@@ -204,6 +206,8 @@ public:
             region is set to this rectangle before calling this function).
         @param n
             The index of the item to be drawn.
+
+        @todo Change this function signature to non-const.
     */
     virtual void OnDrawItem(wxDC& dc, const wxRect& rect, size_t n) const;
 
@@ -220,6 +224,8 @@ public:
             The bounding rectangle for the item.
         @param n
             The index of the item.
+
+        @todo Change this function signature to non-const.
     */
     virtual void OnDrawSeparator(wxDC& dc, wxRect& rect, size_t n) const;