lyx_mirror/src/insets/insetbase.C
André Pönitz a58158344d iu2: move localDispatch() to InsetBase
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6194 a592a061-630c-0410-9148-cb99ea01b6c8
2003-02-18 11:47:16 +00:00

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);
}