This commit is contained in:
yangjiaxuan 2022-11-24 18:27:43 +08:00
parent c86aec0218
commit 06bb383d3a
4 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@ -2767,7 +2767,7 @@ Continue to close?</source>
<location filename="mainwindow.cpp" line="1082"/>
<location filename="mainwindow.cpp" line="1083"/>
<source>create savepath failed: </source>
<translation> </translation>
<translation type="unfinished"> </translation>
</message>
<message>
<location filename="mainwindow.cpp" line="970"/>

View File

@ -282,8 +282,8 @@ void Dialog_ExportImageFile::on_finish(int ret)
QString str = (ret == HGBASE_ERR_OK) ? tr("export succeed") : tr("export failed: ") + MainWindow::getLogInfo(ret);
QMessageBox msg(QMessageBox::Information, tr("tip"), str, QMessageBox::Ok, this);
msg.setButtonText(QMessageBox::Ok, tr("ok"));
msg.exec();
close();
msg.exec();
}
void Dialog_ExportImageFile::on_pushButton_clicked()

View File

@ -138,8 +138,8 @@ void Dialog_MultiRotateImageFile::on_finish(int ret)
QString str = (ret == HGBASE_ERR_OK) ? tr("operation success") : tr("multirotate operation failed: ") + MainWindow::getLogInfo(ret);
QMessageBox msg(QMessageBox::Information, tr("tip"), str, QMessageBox::Ok, this);
msg.setButtonText(QMessageBox::Ok, tr("ok"));
msg.exec();
close();
msg.exec();
}
void Dialog_MultiRotateImageFile::on_pushButton_clicked()