- if (!choice->HasVMT()) return;
- if (g_blockEventsOnDrag) return;
-
- wxCommandEvent event(wxEVT_COMMAND_CHOICE_SELECTED, choice->GetId() );
- event.SetInt( choice->GetSelection() );
- wxString tmp( choice->GetStringSelection() );
- event.SetString( WXSTRINGCAST(tmp) );
- event.SetEventObject(choice);
- choice->GetEventHandler()->ProcessEvent(event);
+ if (g_isIdle) wxapp_install_idle_handler();
+
+ if (!choice->m_hasVMT) return;
+
+ if (g_blockEventsOnDrag) return;
+
+ wxCommandEvent event(wxEVT_COMMAND_CHOICE_SELECTED, choice->GetId() );
+ event.SetInt( choice->GetSelection() );
+ event.SetString( choice->GetStringSelection() );
+ event.SetEventObject(choice);
+ choice->GetEventHandler()->ProcessEvent(event);