Applied patch [ 796736 ] unicode and various warnings fixes for configtool util
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23497 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -200,7 +200,7 @@ void ctCustomPropertyDialog::OnUpdatePropertyChoices( wxUpdateUIEvent& event )
|
||||
* Event handler for ID_PROPERTY_CHOICE_ADD
|
||||
*/
|
||||
|
||||
void ctCustomPropertyDialog::OnPropertyChoiceAdd( wxCommandEvent& event )
|
||||
void ctCustomPropertyDialog::OnPropertyChoiceAdd( wxCommandEvent& WXUNUSED(event) )
|
||||
{
|
||||
wxChoice* choice = (wxChoice* ) FindWindow(ID_CUSTOMPROPERTYTYPE);
|
||||
if ( choice->GetSelection() > -1 && choice->GetStringSelection() == wxT("choice") )
|
||||
@@ -229,9 +229,9 @@ void ctCustomPropertyDialog::OnUpdatePropertyChoiceAdd( wxUpdateUIEvent& event )
|
||||
* Event handler for ID_PROPERTY_CHOICE_REMOVE
|
||||
*/
|
||||
|
||||
void ctCustomPropertyDialog::OnPropertyChoiceRemove( wxCommandEvent& event )
|
||||
void ctCustomPropertyDialog::OnPropertyChoiceRemove( wxCommandEvent& WXUNUSED(event) )
|
||||
{
|
||||
wxChoice* choice = (wxChoice* ) FindWindow(ID_CUSTOMPROPERTYEDITORTYPE);
|
||||
/* wxChoice* choice = (wxChoice* ) */ FindWindow(ID_CUSTOMPROPERTYEDITORTYPE);
|
||||
wxListBox* listBox = (wxListBox* ) FindWindow(ID_PROPERTY_CHOICES);
|
||||
if (listBox->GetSelection() > -1)
|
||||
{
|
||||
|
Reference in New Issue
Block a user