mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-20 14:23:53 +00:00
Bug #1052: Don't use set/getOnlyText which discards escape characters
This commit is contained in:
parent
686d9efac3
commit
02277db685
3 changed files with 5 additions and 5 deletions
|
@ -466,7 +466,7 @@ namespace MWGui
|
|||
|
||||
std::string CreateClassDialog::getName() const
|
||||
{
|
||||
return mEditName->getOnlyText();
|
||||
return mEditName->getCaption();
|
||||
}
|
||||
|
||||
std::string CreateClassDialog::getDescription() const
|
||||
|
|
|
@ -228,8 +228,8 @@ namespace MWGui
|
|||
DescriptionDialog();
|
||||
~DescriptionDialog();
|
||||
|
||||
std::string getTextInput() const { return mTextEdit ? mTextEdit->getOnlyText() : ""; }
|
||||
void setTextInput(const std::string &text) { if (mTextEdit) mTextEdit->setOnlyText(text); }
|
||||
std::string getTextInput() const { return mTextEdit->getCaption(); }
|
||||
void setTextInput(const std::string &text) { mTextEdit->setCaption(text); }
|
||||
|
||||
protected:
|
||||
void onOkClicked(MyGUI::Widget* _sender);
|
||||
|
|
|
@ -15,8 +15,8 @@ namespace MWGui
|
|||
public:
|
||||
TextInputDialog();
|
||||
|
||||
std::string getTextInput() const { return mTextEdit ? mTextEdit->getOnlyText() : ""; }
|
||||
void setTextInput(const std::string &text) { if (mTextEdit) mTextEdit->setOnlyText(text); }
|
||||
std::string getTextInput() const { return mTextEdit->getCaption(); }
|
||||
void setTextInput(const std::string &text) { mTextEdit->setCaption(text); }
|
||||
|
||||
void setNextButtonShow(bool shown);
|
||||
void setTextLabel(const std::string &label);
|
||||
|
|
Loading…
Reference in a new issue