implemented contrast slider

This commit is contained in:
2024-11-25 04:07:56 +03:00
parent 3106479fcc
commit a39a34852c
5 changed files with 43 additions and 16 deletions

View File

@@ -58,13 +58,14 @@ std::string MainWindow::makeRequestToOfd(std::string captcha) {
ui->total_edit->text().toDouble() * 100,
captcha);
return checkContent
return checkContent;
}
void MainWindow::receiveSolvedCaptcha(std::string captcha) {
std::string check_content = makeRequestToOfd(captcha);
std::cout << check_content << std::endl;
}