mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-27 22:41:09 +00:00
remove redundant break statement from LyXFunc::Dispatch.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1763 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
c9e204f17c
commit
1a5a092741
@ -1,3 +1,7 @@
|
|||||||
|
2001-03-14 Angus Leeming <a.leeming@ic.ac.uk>
|
||||||
|
|
||||||
|
* lyxfunc.C (Dispatch): removed redundant break statement.
|
||||||
|
|
||||||
2001-03-14 Juergen Vigna <jug@sad.it>
|
2001-03-14 Juergen Vigna <jug@sad.it>
|
||||||
|
|
||||||
* tabular.C (l_getline): pay attention on \r\n (from Windows-files)
|
* tabular.C (l_getline): pay attention on \r\n (from Windows-files)
|
||||||
|
@ -896,11 +896,8 @@ string const LyXFunc::Dispatch(int ac,
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case LFUN_MENUSEARCH:
|
case LFUN_MENUSEARCH:
|
||||||
{
|
|
||||||
owner->getDialogs()->showSearch();
|
owner->getDialogs()->showSearch();
|
||||||
break;
|
break;
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case LFUN_REMOVEERRORS:
|
case LFUN_REMOVEERRORS:
|
||||||
if (owner->view()->removeAutoInsets()) {
|
if (owner->view()->removeAutoInsets()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user