From 1bf177fe7215af6cf3bf4e3fc05570c6cb2da188 Mon Sep 17 00:00:00 2001 From: Marc Zinnschlag Date: Fri, 15 Aug 2014 12:01:37 +0200 Subject: [PATCH] fixed double namespace in GenericCreator --- apps/opencs/view/world/genericcreator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/opencs/view/world/genericcreator.cpp b/apps/opencs/view/world/genericcreator.cpp index bbdf2f67b..7ad5305e3 100644 --- a/apps/opencs/view/world/genericcreator.cpp +++ b/apps/opencs/view/world/genericcreator.cpp @@ -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 {}