| 1092 | } |
| 1093 | |
| 1094 | void SearchReplaceWidget::replaceNext() { |
| 1095 | // check the current cell first (no proceed) whether the value matches and needs to be replaced. |
| 1096 | // if it doesn't match, proceed to the next cell. |
| 1097 | const bool found = findNext(false /* proceed */, true /* find and replace */); |
| 1098 | if (!found) |
| 1099 | findNext(true /* proceed */, true /* find and replace */); |
| 1100 | } |
| 1101 | |
| 1102 | void SearchReplaceWidget::replaceAll() { |
| 1103 | const auto type = static_cast<DataType>(uiSearchReplace.cbDataType->currentIndex()); |
no outgoing calls