From: Juergen Spitzmueller Date: Tue, 10 Jul 2018 09:01:49 +0000 (+0200) Subject: Fix creationCode() of GuiPrintNomencl X-Git-Tag: lyx-2.4.0dev-acb2ca7b~3297 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=d2afa67da91dd2371fd78516882f7f603fa4ab8b;p=lyx.git Fix creationCode() of GuiPrintNomencl This fixes "New Inset" in that dialog. Candidate for stable --- diff --git a/src/frontends/qt4/GuiPrintNomencl.h b/src/frontends/qt4/GuiPrintNomencl.h index 54e6d9614d..ad1a195446 100644 --- a/src/frontends/qt4/GuiPrintNomencl.h +++ b/src/frontends/qt4/GuiPrintNomencl.h @@ -36,7 +36,7 @@ private: /// \name InsetParamsWidget inherited methods //@{ InsetCode insetCode() const { return NOMENCL_PRINT_CODE; } - FuncCode creationCode() const { return LFUN_INSET_INSERT; } + FuncCode creationCode() const { return LFUN_NOMENCL_PRINT; } QString dialogTitle() const { return qt_("Nomenclature List Settings"); } void paramsToDialog(Inset const *); void paramsToDialog(InsetCommandParams const &);