Updates the associated widget, returning true on success. */
| 318 | |
| 319 | /** Updates the associated widget, returning true on success. */ |
| 320 | virtual bool TransferToWindow() |
| 321 | { |
| 322 | if ( m_widget ) { |
| 323 | wxValidator* validator = m_widget->GetValidator(); |
| 324 | |
| 325 | if ( validator ) |
| 326 | return validator->TransferToWindow(); |
| 327 | } |
| 328 | |
| 329 | return false; |
| 330 | } |
| 331 | |
| 332 | #endif |
| 333 |
nothing calls this directly
no test coverage detected