| 934 | } |
| 935 | |
| 936 | float CaptureContext::UpdateLoadProgress() |
| 937 | { |
| 938 | float val = 0.8f * m_LoadProgress + 0.19f * m_PostloadProgress + 0.01f; |
| 939 | |
| 940 | m_MainWindow->setProgress(val); |
| 941 | |
| 942 | return val; |
| 943 | } |
| 944 | |
| 945 | void CaptureContext::LoadCaptureThreaded(const QString &captureFile, const ReplayOptions &opts, |
| 946 | const QString &origFilename, bool temporary, bool local) |
nothing calls this directly
no test coverage detected