| 3202 | } |
| 3203 | |
| 3204 | void |
| 3205 | ViewerInstance::redrawViewer() |
| 3206 | { |
| 3207 | // always running in the main thread |
| 3208 | assert( qApp && qApp->thread() == QThread::currentThread() ); |
| 3209 | if (!_imp->uiContext) { |
| 3210 | return; |
| 3211 | } |
| 3212 | _imp->uiContext->redraw(); |
| 3213 | } |
| 3214 | |
| 3215 | void |
| 3216 | ViewerInstance::redrawViewerNow() |
no test coverage detected