| 306 | } |
| 307 | |
| 308 | void UIFileDialog::onWindowReady() { |
| 309 | if ( usingNativeFileDialog() ) |
| 310 | return; |
| 311 | updateClickStep(); |
| 312 | if ( isSaveDialog() ) { |
| 313 | mFile->getDocument().selectAll(); |
| 314 | mFile->setFocus(); |
| 315 | } |
| 316 | UIWindow::onWindowReady(); |
| 317 | } |
| 318 | |
| 319 | Uint32 UIFileDialog::getType() const { |
| 320 | return UI_TYPE_FILEDIALOG; |
nothing calls this directly
no test coverage detected