From: Vadim Zeitlin Date: Thu, 30 Jun 2011 12:20:29 +0000 (+0000) Subject: Fix warning about hiding a virtual function in propgrid sample. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/bb504ee3c3b04fa624c72b2aeb7cc25a4ad68262?hp=bb504ee3c3b04fa624c72b2aeb7cc25a4ad68262 Fix warning about hiding a virtual function in propgrid sample. The virtual ColourToString() method was hidden and not overridden in the sample because it didn't use the last argument of the base class method. Fix this in the most straightforward (albeit not necessarily the most correct) way to at least ensure that the function is really overridden. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68109 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 ---