mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Minor style things, and a little constness.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32779 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
83b3e02f69
commit
0fd5b1d43f
@ -486,14 +486,14 @@ KeyMap::BindingList KeyMap::listBindings(bool unbound, KeyMap::ItemType tag) con
|
||||
listBindings(list, KeySequence(0, 0), tag);
|
||||
if (unbound) {
|
||||
LyXAction::const_iterator fit = lyxaction.func_begin();
|
||||
LyXAction::const_iterator fit_end = lyxaction.func_end();
|
||||
for (; fit != fit_end; ++fit) {
|
||||
LyXAction::const_iterator const fen = lyxaction.func_end();
|
||||
for (; fit != fen; ++fit) {
|
||||
FuncCode action = fit->second;
|
||||
bool has_action = false;
|
||||
BindingList::const_iterator it = list.begin();
|
||||
BindingList::const_iterator it_end = list.end();
|
||||
for (; it != it_end; ++it)
|
||||
if (it->request.action == action) {
|
||||
BindingList::const_iterator bit = list.begin();
|
||||
BindingList::const_iterator const ben = list.end();
|
||||
for (; bit != ben; ++bit)
|
||||
if (bit->request.action == action) {
|
||||
has_action = true;
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user