]> git.lyx.org Git - lyx.git/blob - src/insets/insetbase.C
fix #832
[lyx.git] / src / insets / insetbase.C
1
2 #include "insetbase.h"
3
4
5 dispatch_result InsetBase::dispatch(FuncRequest const &, idx_type &, pos_type &)
6 {
7         return UNDISPATCHED;
8 }
9
10
11 dispatch_result InsetBase::localDispatch(FuncRequest const & cmd)
12 {
13         idx_type idx = 0;
14         pos_type pos = 0;
15         return dispatch(cmd, idx, pos);
16 }
17