qcam: main_window: Don't print message when saving a picture

When saving a picture, the application prints a message on cout. This
isn't necessary and doesn't really help with debugging or diagnostics,
remove it.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
Laurent Pinchart 2020-03-22 21:30:04 +02:00
parent 7536d7d2f8
commit 0420a14d75

View file

@ -410,9 +410,6 @@ void MainWindow::saveImageAs()
QString filename = QFileDialog::getSaveFileName(this, "Save Image", defaultPath,
"Image Files (*.png *.jpg *.jpeg)");
std::cout << "Save image to " << filename.toStdString() << std::endl;
if (filename.isEmpty())
return;