mirror of
https://github.com/lostjared/Acid.Cam.v2.Qt.git
synced 2025-12-16 20:00:01 +01:00
better error messages
This commit is contained in:
@@ -517,7 +517,7 @@ bool AC_MainWindow::startCamera(int res, int dev, const QString &outdir, bool re
|
||||
#endif
|
||||
if(!writer.isOpened()) {
|
||||
Log(tr("Could not create video writer..\n"));
|
||||
QMessageBox::information(this, tr("Error"), "Incorrect Pathname");
|
||||
QMessageBox::information(this, tr("Error"), tr("Incorrect Pathname/Or you do not have permission to write to the directory."));
|
||||
return false;
|
||||
}
|
||||
QString out_s;
|
||||
@@ -599,7 +599,7 @@ bool AC_MainWindow::startVideo(const QString &filename, const QString &outdir, b
|
||||
#endif
|
||||
if(!writer.isOpened()) {
|
||||
Log("Error could not open video writer.\n");
|
||||
QMessageBox::information(this, tr("Error invalid path"), "Invalid Path name");
|
||||
QMessageBox::information(this, tr("Error invalid path"), tr("Incorrect Pathname/Or you do not have permission to write to the directory."));
|
||||
return false;
|
||||
}
|
||||
QString out_s;
|
||||
|
||||
Reference in New Issue
Block a user