]> git.lyx.org Git - features.git/commitdiff
Remove unused variable
authorJuergen Spitzmueller <spitz@lyx.org>
Thu, 27 Dec 2018 07:51:17 +0000 (08:51 +0100)
committerJuergen Spitzmueller <spitz@lyx.org>
Thu, 27 Dec 2018 07:51:17 +0000 (08:51 +0100)
src/frontends/qt4/GuiToolbar.cpp

index 8966bcfdebbcca24eded1577472f185427a9c7b3..1cedd30ce2e2ba64d32a36d4d6f090b6afe9f571 100644 (file)
@@ -395,7 +395,6 @@ void DynamicMenuButton::updateTriggered()
                docstring_list::const_iterator cit = sel.begin();
                docstring_list::const_iterator end = sel.end();
 
-               Action * default_act = nullptr;
                for (unsigned int index = 0; cit != end; ++cit, ++index) {
                        docstring const s = *cit;
                        FuncRequest func(LFUN_PASTE, convert<docstring>(index),
@@ -404,9 +403,6 @@ void DynamicMenuButton::updateTriggered()
                                + from_ascii(". ") + s ;
                        Action * act = new Action(func, QIcon(), toqstr(lb), toqstr(s), this);
                        m->addAction(act);
-                       // The most recent one is the default
-                       if (index == 0)
-                               default_act = act;
                }
                Action * default_action = new Action(FuncRequest(LFUN_PASTE),
                                                     getIcon(FuncRequest(LFUN_PASTE), false),