mirror of
https://github.com/FAUSheppy/speech-server-client-qt
synced 2025-12-08 17:48:32 +01:00
remove debug output
This commit is contained in:
@@ -177,7 +177,6 @@ QString MainWindow::buildURLFromLocation(QString location){
|
|||||||
port = ":" + port;
|
port = ":" + port;
|
||||||
}
|
}
|
||||||
QString url = proto + host + port + location;
|
QString url = proto + host + port + location;
|
||||||
qDebug(qPrintable(url));
|
|
||||||
return url;
|
return url;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -307,8 +306,6 @@ void MainWindow::saveTranscript(QNetworkReply* reply){
|
|||||||
|
|
||||||
/* save return data */
|
/* save return data */
|
||||||
QString fullpath = QDir(mySettings->value(SETTING_SAVE_DIR).toString()).filePath(targetName);
|
QString fullpath = QDir(mySettings->value(SETTING_SAVE_DIR).toString()).filePath(targetName);
|
||||||
qDebug(qPrintable(fullpath));
|
|
||||||
qDebug(qPrintable(transcript));
|
|
||||||
QFile file(fullpath);
|
QFile file(fullpath);
|
||||||
if (!file.open(QIODevice::WriteOnly)) {
|
if (!file.open(QIODevice::WriteOnly)) {
|
||||||
QMessageBox::information(this, tr("Unable to open file"), file.errorString());
|
QMessageBox::information(this, tr("Unable to open file"), file.errorString());
|
||||||
|
|||||||
Reference in New Issue
Block a user