2022-11-18 23:47:32 +00:00
|
|
|
#include "appcore.h"
|
2022-12-31 13:05:58 +00:00
|
|
|
#include "DocsManager.h"
|
2022-11-22 04:00:53 +00:00
|
|
|
#include "mainwindow.h"
|
2023-03-17 13:58:38 +00:00
|
|
|
#include "manager_docs.h"
|
|
|
|
#include "srcedit_storyboard.h"
|
|
|
|
#include "xapp.h"
|
|
|
|
#include "xmlconfig.h"
|
2022-11-22 03:42:48 +00:00
|
|
|
|
2022-11-22 04:00:53 +00:00
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QTextStream>
|
2022-11-18 23:47:32 +00:00
|
|
|
|
|
|
|
using namespace Core;
|
2022-11-22 03:42:48 +00:00
|
|
|
using namespace Components;
|
|
|
|
using namespace MakeTools;
|
|
|
|
|
2023-02-26 16:22:44 +00:00
|
|
|
|
|
|
|
SimpleException::SimpleException(const QString &msg)
|
|
|
|
: msg_store(msg) {}
|
|
|
|
|
|
|
|
const char *SimpleException::what() const{
|
|
|
|
return msg_store.toLocal8Bit();
|
|
|
|
}
|