Use "true" by default in wxGenericListCtrl::EnableBellOnNoMatch().

The changes of r72639 mistakenly omitted the default value for
EnableBellOnNoMatch() argument in this class (although it was present in the
base class and in wxGenericTreeCtrl), fix this.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72654 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-10-11 12:41:07 +00:00
parent 8f4e96c0e3
commit 4d3d97a84c

View File

@@ -144,7 +144,7 @@ public:
void RefreshItem(long item); void RefreshItem(long item);
void RefreshItems(long itemFrom, long itemTo); void RefreshItems(long itemFrom, long itemTo);
virtual void EnableBellOnNoMatch(bool on); virtual void EnableBellOnNoMatch(bool on = true);
#if WXWIN_COMPATIBILITY_2_6 #if WXWIN_COMPATIBILITY_2_6
// obsolete, don't use // obsolete, don't use