mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-21 23:09:40 +00:00
missing break; and put a '}' where it should be
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1066 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
0e86ed5583
commit
eb1be4a02b
@ -1,5 +1,8 @@
|
||||
2000-10-02 Allan Rae <rae@lyx.org>
|
||||
|
||||
* src/lyxfunc.C (Dispatch): missing break; and moved the '}' for
|
||||
LFUN_UNKNOWN_ACTION: so it doesn't wrap around default:.
|
||||
|
||||
* src/frontends/xforms/FormPreferences.[Ch] (restore): D'oh.
|
||||
Left this one out by accident.
|
||||
|
||||
|
@ -2921,6 +2921,7 @@ string const LyXFunc::Dispatch(int ac,
|
||||
// a zoom change.
|
||||
textcache.clear();
|
||||
}
|
||||
break;
|
||||
|
||||
case LFUN_SET_COLOR:
|
||||
{
|
||||
@ -3000,10 +3001,11 @@ string const LyXFunc::Dispatch(int ac,
|
||||
setErrorMessage(N_("Unknown action"));
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
default:
|
||||
lyxerr << "A truly unknown func!" << endl;
|
||||
break;
|
||||
}
|
||||
} // end of switch
|
||||
exit_with_message:
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user