no changes, just fixed spelling of 'indeterminate'
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44977 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -211,8 +211,7 @@ void GaugeWidgetsPage::CreateContent()
|
|||||||
sizerLeft->Add(btn, 0, wxALIGN_CENTRE_HORIZONTAL | wxALL, 15);
|
sizerLeft->Add(btn, 0, wxALIGN_CENTRE_HORIZONTAL | wxALL, 15);
|
||||||
|
|
||||||
// middle pane
|
// middle pane
|
||||||
wxStaticBox *box2 = new wxStaticBox(this, wxID_ANY,
|
wxStaticBox *box2 = new wxStaticBox(this, wxID_ANY, _T("&Change gauge value"));
|
||||||
_T("&Change gauge value"));
|
|
||||||
wxSizer *sizerMiddle = new wxStaticBoxSizer(box2, wxVERTICAL);
|
wxSizer *sizerMiddle = new wxStaticBoxSizer(box2, wxVERTICAL);
|
||||||
|
|
||||||
wxTextCtrl *text;
|
wxTextCtrl *text;
|
||||||
@@ -239,7 +238,8 @@ void GaugeWidgetsPage::CreateContent()
|
|||||||
btn = new wxButton(this, GaugePage_Progress, _T("Simulate &progress"));
|
btn = new wxButton(this, GaugePage_Progress, _T("Simulate &progress"));
|
||||||
sizerMiddle->Add(btn, 0, wxALL | wxGROW, 5);
|
sizerMiddle->Add(btn, 0, wxALL | wxGROW, 5);
|
||||||
|
|
||||||
btn = new wxButton(this, GaugePage_IndeterminateProgress, _T("Simulate undeterminate job"));
|
btn = new wxButton(this, GaugePage_IndeterminateProgress,
|
||||||
|
_T("Simulate &indeterminate job"));
|
||||||
sizerMiddle->Add(btn, 0, wxALL | wxGROW, 5);
|
sizerMiddle->Add(btn, 0, wxALL | wxGROW, 5);
|
||||||
|
|
||||||
btn = new wxButton(this, GaugePage_Clear, _T("&Clear"));
|
btn = new wxButton(this, GaugePage_Clear, _T("&Clear"));
|
||||||
@@ -345,7 +345,7 @@ void GaugeWidgetsPage::StopTimer(wxButton *clicked)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
clicked->SetLabel(_T("Simulate undeterminate job"));
|
clicked->SetLabel(_T("Simulate indeterminate job"));
|
||||||
FindWindow(GaugePage_Progress)->Enable();
|
FindWindow(GaugePage_Progress)->Enable();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user