| 178 | } |
| 179 | |
| 180 | void CodeGenerator::onDoModal() |
| 181 | { |
| 182 | MyGUI::IntSize windowSize = mMainWidget->getSize(); |
| 183 | MyGUI::IntSize parentSize = mMainWidget->getParentSize(); |
| 184 | |
| 185 | mMainWidget->setPosition( |
| 186 | (parentSize.width - windowSize.width) / 2, |
| 187 | (parentSize.height - windowSize.height) / 2); |
| 188 | } |
| 189 | |
| 190 | void CodeGenerator::onEndModal() |
| 191 | { |
nothing calls this directly
no test coverage detected