]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiNomenclature.cpp
Fix the tab ordering of GuiDocument components.
[lyx.git] / src / frontends / qt4 / GuiNomenclature.cpp
index 92250a7b27efd312cc5cd18d5067aaf013b7662a..7415f7f3dff3f21c446a3ddc4adb4f9cb2cb3ea1 100644 (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())