mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-21 07:53:53 +00:00
Fix namespace, add file to CMakeLists.txt
This commit is contained in:
parent
3f27c85630
commit
e672880f64
3 changed files with 5 additions and 11 deletions
|
@ -67,7 +67,7 @@ opencs_hdrs_noqt (view/doc
|
|||
|
||||
opencs_units (view/world
|
||||
table tablesubview scriptsubview util regionmapsubview tablebottombox creator genericcreator
|
||||
cellcreator referenceablecreator referencecreator scenesubview
|
||||
cellcreator referenceablecreator startscriptcreator referencecreator scenesubview
|
||||
infocreator scriptedit dialoguesubview previewsubview regionmap dragrecordtable nestedtable
|
||||
dialoguespinbox recordbuttonbar tableeditidaction scripterrortable extendedcommandconfigurator
|
||||
)
|
||||
|
|
|
@ -1,16 +1,10 @@
|
|||
#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)
|
||||
{}
|
||||
|
||||
std::string CSVWORLD::StartScriptCreator::getErrors() const
|
||||
std::string CSVWorld::StartScriptCreator::getErrors() const
|
||||
{
|
||||
std::string errors;
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include "genericcreator.hpp"
|
||||
|
||||
namespace CSVWORLD {
|
||||
namespace CSVWorld {
|
||||
|
||||
class StartScriptCreator : public GenericCreator
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue