]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbase.C
Enable convertDefault.sh to run even if its executable bit is not set.
[lyx.git] / src / insets / insetbase.C
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..c242739ff729ec92a0966b53f74ee08a43e63b52 100644 (file)
@@ -0,0 +1,26 @@
+/**
+ * \file insetbase.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
+#include <config.h>
+#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);
+}