Remove unused SearchCtrlWidgetsPage::Reset() from widgets sample.

This method was simply unused and unneeded.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72575 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-09-28 23:49:42 +00:00
parent 209dc298e2
commit ceddf94945

View 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()
{