Remove unused variable

This commit is contained in:
Juergen Spitzmueller 2018-12-27 08:51:17 +01:00
parent ab87993352
commit 01872b4dd5

View File

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