mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 18:49:54 +00:00
21 lines
No EOL
337 B
C++
21 lines
No EOL
337 B
C++
|
|
#include "editor.hpp"
|
|
|
|
#include <QtGui/QApplication>
|
|
|
|
CS::Editor::Editor() : mViewManager (mDocumentManager)
|
|
{
|
|
}
|
|
|
|
void CS::Editor::createDocument()
|
|
{
|
|
CSMDoc::Document *document = mDocumentManager.addDocument();
|
|
mViewManager.addView (document);
|
|
}
|
|
|
|
int CS::Editor::run()
|
|
{
|
|
createDocument();
|
|
|
|
return QApplication::exec();
|
|
} |