mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
a58158344d
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6194 a592a061-630c-0410-9148-cb99ea01b6c8
18 lines
277 B
C
18 lines
277 B
C
|
|
#include "insetbase.h"
|
|
|
|
|
|
dispatch_result InsetBase::dispatch(FuncRequest const &, idx_type &, pos_type &)
|
|
{
|
|
return UNDISPATCHED;
|
|
}
|
|
|
|
|
|
dispatch_result InsetBase::localDispatch(FuncRequest const & cmd)
|
|
{
|
|
idx_type idx = 0;
|
|
pos_type pos = 0;
|
|
return dispatch(cmd, idx, pos);
|
|
}
|
|
|