1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-30 18:45:36 +00:00

Fix namespace, add file to CMakeLists.txt

(cherry picked from commit e672880f64)
This commit is contained in:
artemutin@yandex.ru 2015-09-29 22:43:20 +10:00 committed by cc9cii
parent cb6198a843
commit b0018aa791
3 changed files with 5 additions and 11 deletions

View file

@ -67,7 +67,7 @@ opencs_hdrs_noqt (view/doc
opencs_units (view/world opencs_units (view/world
table tablesubview scriptsubview util regionmapsubview tablebottombox creator genericcreator table tablesubview scriptsubview util regionmapsubview tablebottombox creator genericcreator
cellcreator referenceablecreator referencecreator scenesubview cellcreator referenceablecreator startscriptcreator referencecreator scenesubview
infocreator scriptedit dialoguesubview previewsubview regionmap dragrecordtable nestedtable infocreator scriptedit dialoguesubview previewsubview regionmap dragrecordtable nestedtable
dialoguespinbox recordbuttonbar tableeditidaction scripterrortable extendedcommandconfigurator dialoguespinbox recordbuttonbar tableeditidaction scripterrortable extendedcommandconfigurator
) )

View file

@ -1,16 +1,10 @@
#include "startscriptcreator.hpp" #include "startscriptcreator.hpp"
StartScriptCreator::StartScriptCreator() CSVWorld::StartScriptCreator::StartScriptCreator(CSMWorld::Data &data, QUndoStack &undoStack, const CSMWorld::UniversalId &id, bool relaxedIdRules):
{
}
CSVWORLD::StartScriptCreator::StartScriptCreator(CSMWorld::Data &data, QUndoStack &undoStack, const CSMWorld::UniversalId &id, bool relaxedIdRules):
GenericCreator (data, undoStack, id, true) GenericCreator (data, undoStack, id, true)
{} {}
std::string CSVWORLD::StartScriptCreator::getErrors() const std::string CSVWorld::StartScriptCreator::getErrors() const
{ {
std::string errors; std::string errors;

View file

@ -3,7 +3,7 @@
#include "genericcreator.hpp" #include "genericcreator.hpp"
namespace CSVWORLD { namespace CSVWorld {
class StartScriptCreator : public GenericCreator class StartScriptCreator : public GenericCreator
{ {