| 383 | } |
| 384 | |
| 385 | void StoreProgress::on_change_file() |
| 386 | { |
| 387 | QString file = ""; |
| 388 | if (_isExport) |
| 389 | file = _store_session->MakeExportFile(true); |
| 390 | else |
| 391 | file = _store_session->MakeSaveFile(true); |
| 392 | |
| 393 | if (file != ""){ |
| 394 | _fileLab->setText(file); |
| 395 | |
| 396 | if (_ckOrigin != NULL){ |
| 397 | bool bFlag = file.endsWith(".csv"); |
| 398 | _ckOrigin->setVisible(bFlag); |
| 399 | _ckCompress->setVisible(bFlag); |
| 400 | } |
| 401 | } |
| 402 | } |
| 403 | |
| 404 | void StoreProgress::on_ck_origin(bool ck) |
| 405 | { |
nothing calls this directly
no test coverage detected