parent
1227e9ebc0
commit
b8fce760dd
|
@ -1714,13 +1714,8 @@ bool TasEditorWindow::saveProjectAs(bool save_compact)
|
||||||
int ret;
|
int ret;
|
||||||
std::string msg;
|
std::string msg;
|
||||||
|
|
||||||
#if defined(__linux__)
|
|
||||||
msg = "Pre-existing TAS project file will be overwritten:\n\n" +
|
msg = "Pre-existing TAS project file will be overwritten:\n\n" +
|
||||||
fi.fileName().toLocal8Bit().constData() + "\n\nReplace file?";
|
std::string(fi.fileName().toLocal8Bit()) + "\n\nReplace file?";
|
||||||
#else
|
|
||||||
msg = "Pre-existing TAS project file will be overwritten:\n\n" +
|
|
||||||
fi.fileName().toLocal8Bit() + "\n\nReplace file?";
|
|
||||||
#endif
|
|
||||||
|
|
||||||
ret = QMessageBox::warning( this, QObject::tr("Overwrite Warning"),
|
ret = QMessageBox::warning( this, QObject::tr("Overwrite Warning"),
|
||||||
QString::fromStdString(msg), QMessageBox::Yes | QMessageBox::No, QMessageBox::No );
|
QString::fromStdString(msg), QMessageBox::Yes | QMessageBox::No, QMessageBox::No );
|
||||||
|
@ -2555,13 +2550,8 @@ bool TasEditorWindow::saveCompactGetFilename( QString &outputFilePath )
|
||||||
int ret;
|
int ret;
|
||||||
std::string msg;
|
std::string msg;
|
||||||
|
|
||||||
#ifdef __linux__
|
|
||||||
msg = "Pre-existing TAS project file will be overwritten:\n\n" +
|
msg = "Pre-existing TAS project file will be overwritten:\n\n" +
|
||||||
fi.fileName().toLocal8Bit().constData() + "\n\nReplace file?";
|
std::string(fi.fileName().toLocal8Bit()) + "\n\nReplace file?";
|
||||||
#else
|
|
||||||
msg = "Pre-existing TAS project file will be overwritten:\n\n" +
|
|
||||||
fi.fileName().toLocal8Bit() + "\n\nReplace file?";
|
|
||||||
#endif
|
|
||||||
|
|
||||||
ret = QMessageBox::warning( this, QObject::tr("Overwrite Warning"),
|
ret = QMessageBox::warning( this, QObject::tr("Overwrite Warning"),
|
||||||
QString::fromStdString(msg), QMessageBox::Yes | QMessageBox::No, QMessageBox::No );
|
QString::fromStdString(msg), QMessageBox::Yes | QMessageBox::No, QMessageBox::No );
|
||||||
|
|
Loading…
Reference in New Issue