mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
* src/frontends/qt4/QMathMatrixDialog.C:
* src/kbmap.C: * src/LaTeXFeatures.C: * src/text.C: remove superfluous "return" statements git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16483 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
ae8872c23c
commit
04b4634213
@ -104,8 +104,6 @@ void LaTeXFeatures::getAvailable()
|
||||
packages_.push_back(name);
|
||||
}
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
|
@ -74,8 +74,6 @@ void QMathMatrixDialog::columnsChanged(int)
|
||||
|
||||
h_align_str[nx] = '\0';
|
||||
halignED->setText(h_align_str);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
|
@ -281,11 +281,9 @@ void kb_keymap::defkey(kb_sequence * seq,
|
||||
newone->func = func;
|
||||
newone->func.origin = FuncRequest::KEYBOARD;
|
||||
newone->table.reset();
|
||||
return;
|
||||
} else {
|
||||
newone->table.reset(new kb_keymap);
|
||||
newone->table->defkey(seq, func, r + 1);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1706,7 +1706,6 @@ void LyXText::setCursorFromCoordinates(LCursor & cur, int const x, int const y)
|
||||
<< endl;
|
||||
|
||||
setCursor(cur, pit, pos, true, bound);
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user