]> git.saurik.com Git - wxWidgets.git/commitdiff
Remove unused SearchCtrlWidgetsPage::Reset() from widgets sample.
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 28 Sep 2012 23:49:42 +0000 (23:49 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 28 Sep 2012 23:49:42 +0000 (23:49 +0000)
This method was simply unused and unneeded.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72575 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/widgets/searchctrl.cpp

index 0ff7330fade8d35beae4053774ad24a0456e4975..97a95881031398e95c902f63f067d0031e6bf414 100644 (file)
@@ -91,9 +91,6 @@ protected:
     // (re)create the control
     void CreateControl();
 
-    // reset the control parameters
-    void Reset();
-
 
     wxSearchCtrl*       m_srchCtrl;
     wxCheckBox*         m_searchBtnCheck;
@@ -140,7 +137,6 @@ void SearchCtrlWidgetsPage::CreateContent()
 {
     m_srchCtrl = NULL;
 
-    Reset();
     CreateControl();
 
 
@@ -176,10 +172,6 @@ void SearchCtrlWidgetsPage::CreateControl()
                                   wxSize(150, -1), style);
 }
 
-void SearchCtrlWidgetsPage::Reset()
-{
-}
-
 
 wxMenu* SearchCtrlWidgetsPage::CreateTestMenu()
 {