| 1613 | */ |
| 1614 | |
| 1615 | void WConfiguration::OnTextctrlOnscreenkeyboardcommandTextUpdated( wxCommandEvent& event ) |
| 1616 | { |
| 1617 | if (event.GetString().Cmp(wxGetApp().GetController().GetOnScreenKeyboardCommand())) |
| 1618 | { |
| 1619 | wxGetApp().GetController().SetOnScreenKeyboardCommand (event.GetString()); |
| 1620 | Changed (); |
| 1621 | } |
| 1622 | event.Skip(false); |
| 1623 | |
| 1624 | } |
| 1625 | |
| 1626 | |
| 1627 | /*! |
nothing calls this directly
no test coverage detected