]> git.lyx.org Git - lyx.git/blob - src/insets/insetbase.C
add warning make controllers compile and remove some alomost unused functions, commen...
[lyx.git] / src / insets / insetbase.C
1 #include "insetbase.h"
2
3
4 dispatch_result InsetBase::dispatch(FuncRequest const &, idx_type &, pos_type &)
5 {
6         return UNDISPATCHED;
7 }
8
9
10 dispatch_result InsetBase::localDispatch(FuncRequest const & cmd)
11 {
12         idx_type idx = 0;
13         pos_type pos = 0;
14         return dispatch(cmd, idx, pos);
15 }
16