1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 15:35:23 +00:00

fixed double namespace in GenericCreator

This commit is contained in:
Marc Zinnschlag 2014-08-15 12:01:37 +02:00
parent c66dfe67b1
commit 1bf177fe72

View File

@ -45,7 +45,7 @@ void CSVWorld::GenericCreator::insertBeforeButtons (QWidget *widget, bool stretc
std::string CSVWorld::GenericCreator::getId() const
{
return getNamespace() + mId->text().toUtf8().constData();
return mId->text().toUtf8().constData();
}
void CSVWorld::GenericCreator::configureCreateCommand (CSMWorld::CreateCommand& command) const {}