]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiPrintindex.cpp
On Linux show in crash message box the backtrace
[lyx.git] / src / frontends / qt4 / GuiPrintindex.cpp
index ef9e0fac6045f7cae8c5107a65060adef91bc784..c667584aab5d88da13899ffa4b6e72ddcdff3019 100644 (file)
@@ -66,7 +66,7 @@ void GuiPrintindex::updateContents()
 
        indicesCO->clear();
 
-       indicesCO->addItem(qt_("<All indices>"),
+       indicesCO->addItem(qt_("<All indexes>"),
                        QVariant(QString("printall")));
 
        const_iterator const begin = indiceslist.begin();
@@ -113,14 +113,15 @@ bool GuiPrintindex::initialiseParams(string const & data)
 {
        // The name passed with LFUN_INSET_APPLY is also the name
        // used to identify the mailer.
-       InsetCommand::string2params("index_print", data, params_);
+       InsetCommand::string2params(data, params_);
+       paramsToDialog(params_);
        return true;
 }
 
 
 void GuiPrintindex::dispatchParams()
 {
-       std::string const lfun = InsetCommand::params2string("index_print", params_);
+       std::string const lfun = InsetCommand::params2string(params_);
        dispatch(FuncRequest(getLfun(), lfun));
 }