23 lines
455 B
C++
23 lines
455 B
C++
#include "appcore.h"
|
|
#include "DocsManager.h"
|
|
#include "mainwindow.h"
|
|
#include "manager_docs.h"
|
|
#include "srcedit_storyboard.h"
|
|
#include "xapp.h"
|
|
#include "xmlconfig.h"
|
|
|
|
#include <QMessageBox>
|
|
#include <QTextStream>
|
|
|
|
using namespace Core;
|
|
using namespace Components;
|
|
using namespace MakeTools;
|
|
|
|
|
|
SimpleException::SimpleException(const QString &msg)
|
|
: msg_store(msg) {}
|
|
|
|
const char *SimpleException::what() const{
|
|
return msg_store.toLocal8Bit();
|
|
}
|