Added HTML About box and changed player dialog label

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15805 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2002-06-12 13:19:08 +00:00
parent d04d32c4ec
commit 5cdeff757d
4 changed files with 252 additions and 13 deletions

View File

@@ -52,7 +52,7 @@ PlayerSelectionDialog::PlayerSelectionDialog(
// enable constraints
SetAutoLayout (TRUE);
wxStaticText* msg = new wxStaticText(this, -1, "Please select a name from the list");
wxStaticText* msg = new wxStaticText(this, -1, "Please select a name or type a new one:");
wxListBox* list = new wxListBox(
this, ID_LISTBOX,
@@ -122,6 +122,8 @@ PlayerSelectionDialog::PlayerSelectionDialog(
m_textField->SetValue(prevPlayer);
}
m_textField->SetFocus();
Layout();
CentreOnParent();