| 81 | } |
| 82 | |
| 83 | void AskPageWidget::slotMessageSend() |
| 84 | { |
| 85 | if (inputEdit) { |
| 86 | auto prompt = inputEdit->edit()->toConvertedText(); |
| 87 | if (prompt.isEmpty()) |
| 88 | return; |
| 89 | askQuestion(prompt); |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | void AskPageWidget::onChatFinished() |
| 94 | { |
nothing calls this directly
no test coverage detected