mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-16 08:42:23 +00:00
Fix namespace, add file to CMakeLists.txt
(cherry picked from commit e672880f644066716452d363b61eff1c56010b0f)
This commit is contained in:
parent
cb6198a843
commit
b0018aa791
@ -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
|
||||||
)
|
)
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
#include "genericcreator.hpp"
|
#include "genericcreator.hpp"
|
||||||
|
|
||||||
namespace CSVWORLD {
|
namespace CSVWorld {
|
||||||
|
|
||||||
class StartScriptCreator : public GenericCreator
|
class StartScriptCreator : public GenericCreator
|
||||||
{
|
{
|
||||||
@ -16,7 +16,7 @@ namespace CSVWORLD {
|
|||||||
virtual std::string getErrors() const;
|
virtual std::string getErrors() const;
|
||||||
///< Return formatted error descriptions for the current state of the creator. if an empty
|
///< Return formatted error descriptions for the current state of the creator. if an empty
|
||||||
/// string is returned, there is no error.
|
/// string is returned, there is no error.
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user