| 163 | } |
| 164 | |
| 165 | void CParameterRecordUI::on_pbFolder_clicked() |
| 166 | { |
| 167 | QString szPath; |
| 168 | szPath = QFileDialog::getExistingDirectory( |
| 169 | this, tr("Open path"), |
| 170 | m_pParameters->GetVideoPath()); |
| 171 | if(szPath.isEmpty()) |
| 172 | return; |
| 173 | ui->leFolder->setText(szPath); |
| 174 | } |
| 175 | |
| 176 | void CParameterRecordUI::on_cmbEncodingMode_currentIndexChanged(int index) |
| 177 | { |
nothing calls this directly
no test coverage detected