forked from mirror/openmw-tes3mp
Remove dead code from alchemywindow.
Also align some braces.
This commit is contained in:
parent
e76401d5ea
commit
cd5bef958f
1 changed files with 1 additions and 9 deletions
|
@ -1,7 +1,5 @@
|
|||
#include "alchemywindow.hpp"
|
||||
|
||||
#include <boost/algorithm/string.hpp>
|
||||
|
||||
#include <MyGUI_Gui.h>
|
||||
|
||||
#include "../mwbase/environment.hpp"
|
||||
|
@ -67,9 +65,6 @@ namespace MWGui
|
|||
|
||||
void AlchemyWindow::onCreateButtonClicked(MyGUI::Widget* _sender)
|
||||
{
|
||||
std::string name = mNameEdit->getCaption();
|
||||
boost::algorithm::trim(name);
|
||||
|
||||
MWMechanics::Alchemy::Result result = mAlchemy->create (mNameEdit->getCaption ());
|
||||
|
||||
if (result == MWMechanics::Alchemy::Result_NoName)
|
||||
|
@ -136,9 +131,6 @@ namespace MWGui
|
|||
mNameEdit->setCaption("");
|
||||
|
||||
int index = 0;
|
||||
|
||||
mAlchemy->setAlchemist (MWMechanics::getPlayer());
|
||||
|
||||
for (MWMechanics::Alchemy::TToolsIterator iter (mAlchemy->beginTools());
|
||||
iter!=mAlchemy->endTools() && index<static_cast<int> (mApparatus.size()); ++iter, ++index)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue