mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 15:35:23 +00:00
when loading a file fails, pop-up critical window and highlight error text
This commit is contained in:
parent
82ef145e79
commit
ce7cef924e
@ -8,6 +8,8 @@
|
||||
#include <QDialogButtonBox>
|
||||
#include <QCloseEvent>
|
||||
#include <QListWidget>
|
||||
#include <QMessageBox>
|
||||
#include <QApplication>
|
||||
|
||||
#include "../../model/doc/document.hpp"
|
||||
|
||||
@ -104,8 +106,10 @@ void CSVDoc::LoadingDocument::nextRecord (int records)
|
||||
void CSVDoc::LoadingDocument::abort (const std::string& error)
|
||||
{
|
||||
mAborted = true;
|
||||
mError->setText (QString::fromUtf8 (("Loading failed: " + error).c_str()));
|
||||
mError->setText (QString::fromUtf8 (("<font color=red>Loading failed: " + error + "</font>").c_str()));
|
||||
mButtons->setStandardButtons (QDialogButtonBox::Close);
|
||||
QMessageBox::critical(this, tr("OpenCS Loading Failed"),
|
||||
QString::fromUtf8 (("Loading failed:\n" + error).c_str()));
|
||||
}
|
||||
|
||||
void CSVDoc::LoadingDocument::addMessage (const std::string& message)
|
||||
@ -199,4 +203,4 @@ void CSVDoc::Loader::loadMessage (CSMDoc::Document *document, const std::string&
|
||||
|
||||
if (iter!=mDocuments.end())
|
||||
iter->second->addMessage (message);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user