mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-20 07:53:51 +00:00
Don't make sTo strings static references
This commit is contained in:
parent
702868255a
commit
664c630ac0
1 changed files with 2 additions and 2 deletions
|
@ -147,7 +147,7 @@ namespace MWGui
|
|||
|
||||
mDurationValue->setCaption("1");
|
||||
mMagnitudeMinValue->setCaption("1");
|
||||
static const std::string &to = MWBase::Environment::get().getWindowManager()->getGameSettingString("sTo", "-");
|
||||
const std::string to = MWBase::Environment::get().getWindowManager()->getGameSettingString("sTo", "-");
|
||||
|
||||
mMagnitudeMaxValue->setCaption(to + " 1");
|
||||
mAreaValue->setCaption("0");
|
||||
|
@ -314,7 +314,7 @@ namespace MWGui
|
|||
}
|
||||
|
||||
mEffect.mMagnMax = pos+1;
|
||||
static const std::string &to = MWBase::Environment::get().getWindowManager()->getGameSettingString("sTo", "-");
|
||||
const std::string to = MWBase::Environment::get().getWindowManager()->getGameSettingString("sTo", "-");
|
||||
|
||||
mMagnitudeMaxValue->setCaption(to + " " + MyGUI::utility::toString(pos+1));
|
||||
|
||||
|
|
Loading…
Reference in a new issue