| 114 | } |
| 115 | |
| 116 | void AddTestCasesWizard::refreshButtonState() { |
| 117 | if (ui->argumentList->rowCount() < 9) { |
| 118 | ui->addArgumentButton->setEnabled(true); |
| 119 | } else { |
| 120 | ui->addArgumentButton->setEnabled(false); |
| 121 | } |
| 122 | |
| 123 | if (ui->argumentList->currentRow() == -1) { |
| 124 | ui->deleteArgumentButton->setEnabled(false); |
| 125 | } else { |
| 126 | ui->deleteArgumentButton->setEnabled(true); |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | void AddTestCasesWizard::getFiles(const QString &curDir, const QString &prefix, QStringList &files) { |
| 131 | QStringList list = QDir(curDir).entryList(QDir::Files); |
nothing calls this directly
no outgoing calls
no test coverage detected