Implement GuiNomenclature::initialiseParams(), thus restoring the

ability to take the symbol from an explicit or implicit selection.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@39651 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2011-09-11 14:14:04 +00:00
parent 014a1a36ed
commit 796bcb8c25
2 changed files with 11 additions and 0 deletions

View File

@ -60,6 +60,16 @@ docstring GuiNomenclature::dialogToParams() const
}
bool GuiNomenclature::initialiseParams(std::string const & data)
{
InsetCommandParams p(insetCode());
if (!InsetCommand::string2params(data, p))
return false;
symbolED->setText(toqstr(p["symbol"]));
return true;
}
bool GuiNomenclature::checkWidgets() const
{
if (!InsetParamsWidget::checkWidgets())

View File

@ -36,6 +36,7 @@ private:
void paramsToDialog(Inset const *);
docstring dialogToParams() const;
bool checkWidgets() const;
bool initialiseParams(std::string const &);
//@}
};