2
0
forked from Ivasoft/DSView

Bump version to v1.00

This commit is contained in:
Andy Dneg
2019-09-09 00:07:19 -07:00
parent f17c612cb1
commit 45204e6a8d
867 changed files with 40976 additions and 21501 deletions

8
DSView/pv/dialogs/storeprogress.cpp Normal file → Executable file
View File

@@ -70,10 +70,10 @@ void StoreProgress::timeout()
QTimer::singleShot(100, this, SLOT(timeout()));
}
void StoreProgress::save_run()
void StoreProgress::save_run(QString session_file)
{
_info.setText("Saving...");
if (_store_session.save_start())
_info.setText(tr("Saving..."));
if (_store_session.save_start(session_file))
show();
else
show_error();
@@ -83,7 +83,7 @@ void StoreProgress::save_run()
void StoreProgress::export_run()
{
_info.setText("Exporting...");
_info.setText(tr("Exporting..."));
if (_store_session.export_start())
show();
else